Package org.alfresco.service.cmr.view
Enum ImporterBinding.UUID_BINDING
- java.lang.Object
-
- java.lang.Enum<ImporterBinding.UUID_BINDING>
-
- org.alfresco.service.cmr.view.ImporterBinding.UUID_BINDING
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ImporterBinding.UUID_BINDING>
- Enclosing interface:
- ImporterBinding
public static enum ImporterBinding.UUID_BINDING extends java.lang.Enum<ImporterBinding.UUID_BINDING>
UUID Binding
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATE_NEWCREATE_NEW_WITH_UUIDREMOVE_EXISTINGREPLACE_EXISTINGTHROW_ON_COLLISIONUPDATE_EXISTING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImporterBinding.UUID_BINDINGvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ImporterBinding.UUID_BINDING[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_NEW
public static final ImporterBinding.UUID_BINDING CREATE_NEW
-
CREATE_NEW_WITH_UUID
public static final ImporterBinding.UUID_BINDING CREATE_NEW_WITH_UUID
-
REMOVE_EXISTING
public static final ImporterBinding.UUID_BINDING REMOVE_EXISTING
-
REPLACE_EXISTING
public static final ImporterBinding.UUID_BINDING REPLACE_EXISTING
-
UPDATE_EXISTING
public static final ImporterBinding.UUID_BINDING UPDATE_EXISTING
-
THROW_ON_COLLISION
public static final ImporterBinding.UUID_BINDING THROW_ON_COLLISION
-
-
Method Detail
-
values
public static ImporterBinding.UUID_BINDING[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ImporterBinding.UUID_BINDING c : ImporterBinding.UUID_BINDING.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImporterBinding.UUID_BINDING valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-