Package org.hibernate.cache.spi.support
Enum AccessedDataClassification
- java.lang.Object
-
- java.lang.Enum<AccessedDataClassification>
-
- org.hibernate.cache.spi.support.AccessedDataClassification
-
- All Implemented Interfaces:
Serializable
,Comparable<AccessedDataClassification>
public enum AccessedDataClassification extends Enum<AccessedDataClassification>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLLECTION
ENTITY
NATURAL_ID
QUERY_RESULTS
TIMESTAMPS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccessedDataClassification
valueOf(String name)
Returns the enum constant of this type with the specified name.static AccessedDataClassification[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENTITY
public static final AccessedDataClassification ENTITY
-
NATURAL_ID
public static final AccessedDataClassification NATURAL_ID
-
COLLECTION
public static final AccessedDataClassification COLLECTION
-
QUERY_RESULTS
public static final AccessedDataClassification QUERY_RESULTS
-
TIMESTAMPS
public static final AccessedDataClassification TIMESTAMPS
-
-
Method Detail
-
values
public static AccessedDataClassification[] 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 (AccessedDataClassification c : AccessedDataClassification.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessedDataClassification 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
-
-