public static enum ChangeReader.ChangeType extends java.lang.Enum<ChangeReader.ChangeType>
Modifier and Type | Method and Description |
---|---|
static ChangeReader.ChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeReader.ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeReader.ChangeType INSERT
public static final ChangeReader.ChangeType UPDATE
public static final ChangeReader.ChangeType DELETE
public static ChangeReader.ChangeType[] values()
for (ChangeReader.ChangeType c : ChangeReader.ChangeType.values()) System.out.println(c);
public static ChangeReader.ChangeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2004-2012 Oracle. All rights reserved.