Enum ServiceCol
- java.lang.Object
-
- java.lang.Enum<ServiceCol>
-
- de.hybris.platform.directpersistence.statement.backend.ServiceCol
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ServiceCol>
public enum ServiceCol extends java.lang.Enum<ServiceCol>
Enumeration which keeps all service level column names for standard DB table.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACL_TSCREATED_TSHJMP_TSITEM_PKITEM_TYPE_PKLANG_PKLANGUAGEPKMODIFIED_TSNAMEOWNER_PK_STRINGPK_STRINGPROP_TSQUALIFIERREALNAMERSEQUENCE_NUMBERSEALEDSEQUENCE_NUMBERSOURCE_PKTARGET_PKTYPE_PK_STRTYPE1VALUE1VALUESTRING1
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringcolName()java.lang.StringtoString()java.lang.ClasstypeClass()static ServiceColvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ServiceCol[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HJMP_TS
public static final ServiceCol HJMP_TS
-
PK_STRING
public static final ServiceCol PK_STRING
-
CREATED_TS
public static final ServiceCol CREATED_TS
-
MODIFIED_TS
public static final ServiceCol MODIFIED_TS
-
TYPE_PK_STR
public static final ServiceCol TYPE_PK_STR
-
ITEM_PK
public static final ServiceCol ITEM_PK
-
ITEM_TYPE_PK
public static final ServiceCol ITEM_TYPE_PK
-
LANG_PK
public static final ServiceCol LANG_PK
-
VALUE1
public static final ServiceCol VALUE1
-
NAME
public static final ServiceCol NAME
-
REALNAME
public static final ServiceCol REALNAME
-
TYPE1
public static final ServiceCol TYPE1
-
VALUESTRING1
public static final ServiceCol VALUESTRING1
-
OWNER_PK_STRING
public static final ServiceCol OWNER_PK_STRING
-
ACL_TS
public static final ServiceCol ACL_TS
-
PROP_TS
public static final ServiceCol PROP_TS
-
QUALIFIER
public static final ServiceCol QUALIFIER
-
SOURCE_PK
public static final ServiceCol SOURCE_PK
-
TARGET_PK
public static final ServiceCol TARGET_PK
-
SEQUENCE_NUMBER
public static final ServiceCol SEQUENCE_NUMBER
-
RSEQUENCE_NUMBER
public static final ServiceCol RSEQUENCE_NUMBER
-
LANGUAGEPK
public static final ServiceCol LANGUAGEPK
-
SEALED
public static final ServiceCol SEALED
-
-
Method Detail
-
values
public static ServiceCol[] 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 (ServiceCol c : ServiceCol.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceCol 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
-
typeClass
public java.lang.Class typeClass()
-
colName
public java.lang.String colName()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ServiceCol>
-
-