Enum WebAppProperty
- java.lang.Object
-
- java.lang.Enum<WebAppProperty>
-
- ch.systemsx.cisd.openbis.generic.shared.basic.dto.WebAppProperty
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WebAppProperty>
public enum WebAppProperty extends java.lang.Enum<WebAppProperty>
Properties for configuration of web applications in OpenBIS.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTEXTS
DATA_SET_TYPES
EXPERIMENT_TYPES
LABEL
MATERIAL_TYPES
SAMPLE_TYPES
SORTING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
static WebAppProperty
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WebAppProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LABEL
public static final WebAppProperty LABEL
-
SORTING
public static final WebAppProperty SORTING
-
CONTEXTS
public static final WebAppProperty CONTEXTS
-
EXPERIMENT_TYPES
public static final WebAppProperty EXPERIMENT_TYPES
-
SAMPLE_TYPES
public static final WebAppProperty SAMPLE_TYPES
-
DATA_SET_TYPES
public static final WebAppProperty DATA_SET_TYPES
-
MATERIAL_TYPES
public static final WebAppProperty MATERIAL_TYPES
-
-
Method Detail
-
values
public static WebAppProperty[] 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 (WebAppProperty c : WebAppProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebAppProperty 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()
-
-