public static enum GenericModel.PropertyCopyPositionIndicator extends Enum<GenericModel.PropertyCopyPositionIndicator>
Enum Constant and Description |
---|
PROPERTY_COPY_BOTTOM
Indicates that properties copied to a class shall be placed at the
bottom of the sequence of existing properties.
|
PROPERTY_COPY_INSEQUENCE
Indicates that properties copied to a class shall be merged into the
sequence of existing properties according to their sequence number.
|
PROPERTY_COPY_TOP
Indicates that properties copied to a class shall be placed at the
top of the sequence of existing properties.
|
Modifier and Type | Method and Description |
---|---|
static GenericModel.PropertyCopyPositionIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenericModel.PropertyCopyPositionIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenericModel.PropertyCopyPositionIndicator PROPERTY_COPY_TOP
public static final GenericModel.PropertyCopyPositionIndicator PROPERTY_COPY_INSEQUENCE
public static final GenericModel.PropertyCopyPositionIndicator PROPERTY_COPY_BOTTOM
public static GenericModel.PropertyCopyPositionIndicator[] values()
for (GenericModel.PropertyCopyPositionIndicator c : GenericModel.PropertyCopyPositionIndicator.values()) System.out.println(c);
public static GenericModel.PropertyCopyPositionIndicator 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 © 2017. All rights reserved.