Enum CustomImport.PropertyNames
- java.lang.Object
-
- java.lang.Enum<CustomImport.PropertyNames>
-
- ch.systemsx.cisd.openbis.generic.shared.basic.dto.CustomImport.PropertyNames
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CustomImport.PropertyNames>
- Enclosing class:
- CustomImport
public static enum CustomImport.PropertyNames extends java.lang.Enum<CustomImport.PropertyNames>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM_IMPORTS
DATASTORE_CODE
DESCRIPTION
DROPBOX_NAME
NAME
TEMPLATE_ATTACHMENT_NAME
TEMPLATE_ENTITY_KIND
TEMPLATE_ENTITY_PERMID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
static CustomImport.PropertyNames
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CustomImport.PropertyNames[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM_IMPORTS
public static final CustomImport.PropertyNames CUSTOM_IMPORTS
-
NAME
public static final CustomImport.PropertyNames NAME
-
DATASTORE_CODE
public static final CustomImport.PropertyNames DATASTORE_CODE
-
DROPBOX_NAME
public static final CustomImport.PropertyNames DROPBOX_NAME
-
DESCRIPTION
public static final CustomImport.PropertyNames DESCRIPTION
-
TEMPLATE_ENTITY_KIND
public static final CustomImport.PropertyNames TEMPLATE_ENTITY_KIND
-
TEMPLATE_ENTITY_PERMID
public static final CustomImport.PropertyNames TEMPLATE_ENTITY_PERMID
-
TEMPLATE_ATTACHMENT_NAME
public static final CustomImport.PropertyNames TEMPLATE_ATTACHMENT_NAME
-
-
Method Detail
-
values
public static CustomImport.PropertyNames[] 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 (CustomImport.PropertyNames c : CustomImport.PropertyNames.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CustomImport.PropertyNames 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
-
getName
public java.lang.String getName()
-
-