public enum AdminDataAnnotation extends Enum<AdminDataAnnotation>
| Enum Constant and Description |
|---|
APPLICATION_USER |
COMPUTED_FIELD |
DB_USER |
IMMUTABLE_FIELD |
NO_CHANGE |
NOW |
| Modifier and Type | Method and Description |
|---|---|
static AdminDataAnnotation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdminDataAnnotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdminDataAnnotation NOW
public static final AdminDataAnnotation DB_USER
public static final AdminDataAnnotation APPLICATION_USER
public static final AdminDataAnnotation NO_CHANGE
public static final AdminDataAnnotation COMPUTED_FIELD
public static final AdminDataAnnotation IMMUTABLE_FIELD
public static AdminDataAnnotation[] values()
for (AdminDataAnnotation c : AdminDataAnnotation.values()) System.out.println(c);
public static AdminDataAnnotation 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 nullCopyright © 2020 SAP. All Rights Reserved.