Enum UtilMarshallerProvider
- java.lang.Object
-
- java.lang.Enum<UtilMarshallerProvider>
-
- org.wildfly.clustering.marshalling.protostream.util.UtilMarshallerProvider
-
- All Implemented Interfaces:
Serializable,Comparable<UtilMarshallerProvider>,org.infinispan.protostream.BaseMarshaller<Object>,org.infinispan.protostream.ProtobufTagMarshaller<Object>,Marshallable<Object>,ProtoStreamMarshaller<Object>,ProtoStreamMarshallerProvider
public enum UtilMarshallerProvider extends Enum<UtilMarshallerProvider> implements ProtoStreamMarshallerProvider
Enumeration of java.util marshallers.- Author:
- Paul Ferraro
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ProtoStreamMarshaller<?>getMarshaller()static UtilMarshallerProvidervalueOf(String name)Returns the enum constant of this type with the specified name.static UtilMarshallerProvider[]values()Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.wildfly.clustering.marshalling.protostream.ProtoStreamMarshaller
getTypeName
-
Methods inherited from interface org.wildfly.clustering.marshalling.protostream.ProtoStreamMarshallerProvider
cast, getJavaClass, read, readFrom, size, write, writeTo
-
-
-
-
Enum Constant Detail
-
ARRAY_DEQUE
public static final UtilMarshallerProvider ARRAY_DEQUE
-
ARRAY_LIST
public static final UtilMarshallerProvider ARRAY_LIST
-
BIT_SET
public static final UtilMarshallerProvider BIT_SET
-
CALENDAR
public static final UtilMarshallerProvider CALENDAR
-
CURRENCY
public static final UtilMarshallerProvider CURRENCY
-
DATE
public static final UtilMarshallerProvider DATE
-
EMPTY_LIST
public static final UtilMarshallerProvider EMPTY_LIST
-
EMPTY_MAP
public static final UtilMarshallerProvider EMPTY_MAP
-
EMPTY_NAVIGABLE_MAP
public static final UtilMarshallerProvider EMPTY_NAVIGABLE_MAP
-
EMPTY_NAVIGABLE_SET
public static final UtilMarshallerProvider EMPTY_NAVIGABLE_SET
-
EMPTY_SET
public static final UtilMarshallerProvider EMPTY_SET
-
EMPTY_SORTED_MAP
public static final UtilMarshallerProvider EMPTY_SORTED_MAP
-
EMPTY_SORTED_SET
public static final UtilMarshallerProvider EMPTY_SORTED_SET
-
ENUM_MAP
public static final UtilMarshallerProvider ENUM_MAP
-
ENUM_SET
public static final UtilMarshallerProvider ENUM_SET
-
HASH_MAP
public static final UtilMarshallerProvider HASH_MAP
-
HASH_SET
public static final UtilMarshallerProvider HASH_SET
-
LINKED_HASH_MAP
public static final UtilMarshallerProvider LINKED_HASH_MAP
-
LINKED_HASH_SET
public static final UtilMarshallerProvider LINKED_HASH_SET
-
LINKED_LIST
public static final UtilMarshallerProvider LINKED_LIST
-
LIST12
public static final UtilMarshallerProvider LIST12
-
LISTN
public static final UtilMarshallerProvider LISTN
-
LOCALE
public static final UtilMarshallerProvider LOCALE
-
MAP1
public static final UtilMarshallerProvider MAP1
-
MAPN
public static final UtilMarshallerProvider MAPN
-
OPTIONAL
public static final UtilMarshallerProvider OPTIONAL
-
OPTIONAL_DOUBLE
public static final UtilMarshallerProvider OPTIONAL_DOUBLE
-
OPTIONAL_INT
public static final UtilMarshallerProvider OPTIONAL_INT
-
OPTIONAL_LONG
public static final UtilMarshallerProvider OPTIONAL_LONG
-
SET12
public static final UtilMarshallerProvider SET12
-
SETN
public static final UtilMarshallerProvider SETN
-
SIMPLE_ENTRY
public static final UtilMarshallerProvider SIMPLE_ENTRY
-
SIMPLE_IMMUTABLE_ENTRY
public static final UtilMarshallerProvider SIMPLE_IMMUTABLE_ENTRY
-
SINGLETON_LIST
public static final UtilMarshallerProvider SINGLETON_LIST
-
SINGLETON_MAP
public static final UtilMarshallerProvider SINGLETON_MAP
-
SINGLETON_SET
public static final UtilMarshallerProvider SINGLETON_SET
-
SYNCHRONIZED_COLLECTION
public static final UtilMarshallerProvider SYNCHRONIZED_COLLECTION
-
SYNCHRONIZED_LIST
public static final UtilMarshallerProvider SYNCHRONIZED_LIST
-
SYNCHRONIZED_MAP
public static final UtilMarshallerProvider SYNCHRONIZED_MAP
-
SYNCHRONIZED_NAVIGABLE_MAP
public static final UtilMarshallerProvider SYNCHRONIZED_NAVIGABLE_MAP
-
SYNCHRONIZED_NAVIGABLE_SET
public static final UtilMarshallerProvider SYNCHRONIZED_NAVIGABLE_SET
-
SYNCHRONIZED_RANDOM_ACCESS_LIST
public static final UtilMarshallerProvider SYNCHRONIZED_RANDOM_ACCESS_LIST
-
SYNCHRONIZED_SET
public static final UtilMarshallerProvider SYNCHRONIZED_SET
-
SYNCHRONIZED_SORTED_MAP
public static final UtilMarshallerProvider SYNCHRONIZED_SORTED_MAP
-
SYNCHRONIZED_SORTED_SET
public static final UtilMarshallerProvider SYNCHRONIZED_SORTED_SET
-
TIME_ZONE
public static final UtilMarshallerProvider TIME_ZONE
-
TREE_MAP
public static final UtilMarshallerProvider TREE_MAP
-
TREE_SET
public static final UtilMarshallerProvider TREE_SET
-
UNMODIFIABLE_COLLECTION
public static final UtilMarshallerProvider UNMODIFIABLE_COLLECTION
-
UNMODIFIABLE_LIST
public static final UtilMarshallerProvider UNMODIFIABLE_LIST
-
UNMODIFIABLE_MAP
public static final UtilMarshallerProvider UNMODIFIABLE_MAP
-
UNMODIFIABLE_NAVIGABLE_MAP
public static final UtilMarshallerProvider UNMODIFIABLE_NAVIGABLE_MAP
-
UNMODIFIABLE_NAVIGABLE_SET
public static final UtilMarshallerProvider UNMODIFIABLE_NAVIGABLE_SET
-
UNMODIFIABLE_RANDOM_ACCESS_LIST
public static final UtilMarshallerProvider UNMODIFIABLE_RANDOM_ACCESS_LIST
-
UNMODIFIABLE_SET
public static final UtilMarshallerProvider UNMODIFIABLE_SET
-
UNMODIFIABLE_SORTED_MAP
public static final UtilMarshallerProvider UNMODIFIABLE_SORTED_MAP
-
UNMODIFIABLE_SORTED_SET
public static final UtilMarshallerProvider UNMODIFIABLE_SORTED_SET
-
UUID
public static final UtilMarshallerProvider UUID
-
-
Method Detail
-
values
public static UtilMarshallerProvider[] 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 (UtilMarshallerProvider c : UtilMarshallerProvider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UtilMarshallerProvider 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
-
getMarshaller
public ProtoStreamMarshaller<?> getMarshaller()
- Specified by:
getMarshallerin interfaceProtoStreamMarshallerProvider
-
-