public static enum GenericModel.PropertyCopyDuplicatBehaviorIndicator extends Enum<GenericModel.PropertyCopyDuplicatBehaviorIndicator>
Enum Constant and Description |
---|
ADD
Indicates that the copy shall be added to the content model,
resulting in two properties with the same name.
|
IGNORE
Indicates that the copy shall be ignored.
|
IGNORE_UNRESTRICT
Indicates that the copy shall be ignored.
|
OVERWRITE
Indicates that the copy shall overwrite the existing property with
the same name.
|
Modifier and Type | Method and Description |
---|---|
static GenericModel.PropertyCopyDuplicatBehaviorIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenericModel.PropertyCopyDuplicatBehaviorIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenericModel.PropertyCopyDuplicatBehaviorIndicator IGNORE
public static final GenericModel.PropertyCopyDuplicatBehaviorIndicator IGNORE_UNRESTRICT
public static final GenericModel.PropertyCopyDuplicatBehaviorIndicator ADD
public static final GenericModel.PropertyCopyDuplicatBehaviorIndicator OVERWRITE
public static GenericModel.PropertyCopyDuplicatBehaviorIndicator[] values()
for (GenericModel.PropertyCopyDuplicatBehaviorIndicator c : GenericModel.PropertyCopyDuplicatBehaviorIndicator.values()) System.out.println(c);
public static GenericModel.PropertyCopyDuplicatBehaviorIndicator 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 © 2018. All rights reserved.