Package adalid.core.enums
Enum KeyProperty
- java.lang.Object
-
- java.lang.Enum<KeyProperty>
-
- adalid.core.enums.KeyProperty
-
- All Implemented Interfaces:
Serializable,Comparable<KeyProperty>
public enum KeyProperty extends Enum<KeyProperty>
- Author:
- Jorge Campins
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUSINESS_KEYCHARACTER_KEYDESCRIPTIONDISCRIMINATORIMAGEINACTIVE_INDICATORNAMENUMERIC_KEYOWNERPARENTPRIMARY_KEYSEGMENTSEQUENCESTATEUNIQUE_KEYURLUSERVERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()StringgetLabelPattern()static KeyPropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static KeyProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRIMARY_KEY
public static final KeyProperty PRIMARY_KEY
-
SEQUENCE
public static final KeyProperty SEQUENCE
-
VERSION
public static final KeyProperty VERSION
-
NUMERIC_KEY
public static final KeyProperty NUMERIC_KEY
-
CHARACTER_KEY
public static final KeyProperty CHARACTER_KEY
-
NAME
public static final KeyProperty NAME
-
DESCRIPTION
public static final KeyProperty DESCRIPTION
-
IMAGE
public static final KeyProperty IMAGE
-
INACTIVE_INDICATOR
public static final KeyProperty INACTIVE_INDICATOR
-
URL
public static final KeyProperty URL
-
PARENT
public static final KeyProperty PARENT
-
OWNER
public static final KeyProperty OWNER
-
USER
public static final KeyProperty USER
-
SEGMENT
public static final KeyProperty SEGMENT
-
UNIQUE_KEY
public static final KeyProperty UNIQUE_KEY
-
BUSINESS_KEY
public static final KeyProperty BUSINESS_KEY
-
DISCRIMINATOR
public static final KeyProperty DISCRIMINATOR
-
STATE
public static final KeyProperty STATE
-
-
Method Detail
-
values
public static KeyProperty[] 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 (KeyProperty c : KeyProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyProperty valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getLabel
public String getLabel()
-
getLabelPattern
public String getLabelPattern()
-
-