public enum ChangeTypeEnum extends Enum<ChangeTypeEnum>
| Enum Constant and Description |
|---|
CREATE
Represents create.
|
DELETE
Represents delete.
|
MODIFY
Represents modify.
|
| Modifier and Type | Method and Description |
|---|---|
int |
changeTypeEnum()
Returns the attribute changeTypeEnum.
|
static ChangeTypeEnum |
of(int value)
Returns the object of changeTypeEnum for.
|
static ChangeTypeEnum |
of(String value)
Returns the object of changeTypeEnum for.
|
String |
toString() |
static ChangeTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeTypeEnum CREATE
public static final ChangeTypeEnum DELETE
public static final ChangeTypeEnum MODIFY
public static ChangeTypeEnum[] values()
for (ChangeTypeEnum c : ChangeTypeEnum.values()) System.out.println(c);
public static ChangeTypeEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static ChangeTypeEnum of(int value)
value - value of changeTypeEnum forpublic static ChangeTypeEnum of(String value)
value - value of changeTypeEnum forpublic int changeTypeEnum()
public String toString()
toString in class Enum<ChangeTypeEnum>Copyright © 2018. All rights reserved.