Enum Class SerializationContext
java.lang.Object
java.lang.Enum<SerializationContext>
org.kuali.rice.krad.data.provider.annotation.SerializationContext
- All Implemented Interfaces:
Serializable,Comparable<SerializationContext>,Constable
Defines different context(s) for serialization in Rice.
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMatches all the other contexts defined inSerializationContext.The context for serializing within the maintenance document framework. -
Method Summary
Modifier and TypeMethodDescriptionbooleanmatches(SerializationContext[] serializationContexts) Does the given array of serializationContexts match this one?static SerializationContextReturns the enum constant of this class with the specified name.static SerializationContext[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL
Matches all the other contexts defined inSerializationContext. -
MAINTENANCE
The context for serializing within the maintenance document framework.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
matches
Does the given array of serializationContexts match this one?Either an exact match, or SerializationContext.ALL will suffice
- Parameters:
serializationContexts- the serializationContexts to test against- Returns:
- true if there is a matching context
-