com.ibm.pim.attribute
Enum AttributeDefinitionProperty.Name
java.lang.Object
java.lang.Enum<AttributeDefinitionProperty.Name>
com.ibm.pim.attribute.AttributeDefinitionProperty.Name
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<AttributeDefinitionProperty.Name>
- Enclosing interface:
- AttributeDefinitionProperty
public static enum AttributeDefinitionProperty.Name
- extends java.lang.Enum<AttributeDefinitionProperty.Name>
All possible property names of an attribute definition.
Following are some of the allowed values for the properties. Note that values are case-sensitive.
Some of these properties are read-only and are available once the AttributeDefinition is created
and configured properly.
EDITABLE: Allowed values: "yes", "no"
UNIQUE: Allowed values: "yes", "no"
HIDDEN: Allowed values: "yes", "no"
INDEXED: Allowed values: "yes", "no"
NON_PERSISTED: Allowed values: "yes", "no"
LOCALIZED: Allowed values: "yes", "no"
LINK_TO_CATALOG: Allowed values: "yes", "no"
BIDI_TYPEOFTEXT: Allowed values: "IMPLICIT", "VISUAL"
BIDI_ORIENTATION: Allowed values: "LTR", "RTL", "CONTEXTUAL_LTR", "CONTEXTUAL_RTL"
BIDI_SWAP: Allowed values: "YES", "NO"
BIDI_NUMSHAPES: Allowed values: "NOMINAL", "NATIONAL", "CONTEXTUAL", "ANY"
BIDI_TEXTSHAPES: Allowed values: "NOMINAL", "SHAPED", "INITIAL", "MIDDLE", "FINAL", "ISOLATED"
DATEONLY: Allowed values: "TRUE", "FALSE"
SINGLE_LINE_STRING: Allowed values: "TRUE", "FALSE"
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
CATEGORY_DELIMITER
public static final AttributeDefinitionProperty.Name CATEGORY_DELIMITER
DEFAULT_VALUE
public static final AttributeDefinitionProperty.Name DEFAULT_VALUE
DEFAULT_VALUE_RULE
public static final AttributeDefinitionProperty.Name DEFAULT_VALUE_RULE
LINK_TO_CATALOG
public static final AttributeDefinitionProperty.Name LINK_TO_CATALOG
MAXLENGTH
public static final AttributeDefinitionProperty.Name MAXLENGTH
MAX_OCCURRENCE
public static final AttributeDefinitionProperty.Name MAX_OCCURRENCE
MINLENGTH
public static final AttributeDefinitionProperty.Name MINLENGTH
MIN_OCCURRENCE
public static final AttributeDefinitionProperty.Name MIN_OCCURRENCE
GROUP
public static final AttributeDefinitionProperty.Name GROUP
NUMBER_ENUMERATION
public static final AttributeDefinitionProperty.Name NUMBER_ENUMERATION
PATTERN
public static final AttributeDefinitionProperty.Name PATTERN
PRECISION
public static final AttributeDefinitionProperty.Name PRECISION
STRING_ENUMERATION
public static final AttributeDefinitionProperty.Name STRING_ENUMERATION
TYPE
public static final AttributeDefinitionProperty.Name TYPE
VALIDATION_RULE
public static final AttributeDefinitionProperty.Name VALIDATION_RULE
VALUE_RULE
public static final AttributeDefinitionProperty.Name VALUE_RULE
NON_PERSISTED_ATTRIBUTE_RULE
public static final AttributeDefinitionProperty.Name NON_PERSISTED_ATTRIBUTE_RULE
STRING_ENUMERATION_RULE
public static final AttributeDefinitionProperty.Name STRING_ENUMERATION_RULE
EDITABLE
public static final AttributeDefinitionProperty.Name EDITABLE
UNIQUE
public static final AttributeDefinitionProperty.Name UNIQUE
LOOKUP_TABLE
public static final AttributeDefinitionProperty.Name LOOKUP_TABLE
SEQUENCE_INCREMENT
public static final AttributeDefinitionProperty.Name SEQUENCE_INCREMENT
SEQUENCE_START
public static final AttributeDefinitionProperty.Name SEQUENCE_START
DATE_FORMAT
public static final AttributeDefinitionProperty.Name DATE_FORMAT
TIMEZONE_DEFAULT
public static final AttributeDefinitionProperty.Name TIMEZONE_DEFAULT
BIDI_TYPEOFTEXT
public static final AttributeDefinitionProperty.Name BIDI_TYPEOFTEXT
BIDI_ORIENTATION
public static final AttributeDefinitionProperty.Name BIDI_ORIENTATION
BIDI_SWAP
public static final AttributeDefinitionProperty.Name BIDI_SWAP
BIDI_NUMSHAPES
public static final AttributeDefinitionProperty.Name BIDI_NUMSHAPES
BIDI_TEXTSHAPES
public static final AttributeDefinitionProperty.Name BIDI_TEXTSHAPES
LOCALE
public static final AttributeDefinitionProperty.Name LOCALE
LOCALIZED
public static final AttributeDefinitionProperty.Name LOCALIZED
HELP_URL
public static final AttributeDefinitionProperty.Name HELP_URL
HIDDEN
public static final AttributeDefinitionProperty.Name HIDDEN
NON_PERSISTED
public static final AttributeDefinitionProperty.Name NON_PERSISTED
OCCURRENCES_TO_DISPLAY
public static final AttributeDefinitionProperty.Name OCCURRENCES_TO_DISPLAY
CASCADE
public static final AttributeDefinitionProperty.Name CASCADE
INDEXED
public static final AttributeDefinitionProperty.Name INDEXED
CURRENCY
public static final AttributeDefinitionProperty.Name CURRENCY
DATEONLY
public static final AttributeDefinitionProperty.Name DATEONLY
SINGLE_LINE_STRING
public static final AttributeDefinitionProperty.Name SINGLE_LINE_STRING
NUMBER_FORMAT
public static final AttributeDefinitionProperty.Name NUMBER_FORMAT
EXCEL_DATE_FORMAT
public static final AttributeDefinitionProperty.Name EXCEL_DATE_FORMAT
LOCALE_IDENTIFIER
public static final AttributeDefinitionProperty.Name LOCALE_IDENTIFIER
LOCALE_NODE
public static final AttributeDefinitionProperty.Name LOCALE_NODE
LANGUAGE_CODE
public static final AttributeDefinitionProperty.Name LANGUAGE_CODE
COUNTRY_CODE
public static final AttributeDefinitionProperty.Name COUNTRY_CODE
SEQUENCE_NAME
public static final AttributeDefinitionProperty.Name SEQUENCE_NAME
SEQUENCE_SEQUENTIAL
public static final AttributeDefinitionProperty.Name SEQUENCE_SEQUENTIAL
values
public static final AttributeDefinitionProperty.Name[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(AttributeDefinitionProperty.Name c : AttributeDefinitionProperty.Name.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static AttributeDefinitionProperty.Name 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 name