Enum ClassField
- java.lang.Object
-
- java.lang.Enum<ClassField>
-
- org.wildfly.clustering.marshalling.protostream.ClassField
-
- All Implemented Interfaces:
Serializable,Comparable<ClassField>,Field<Class<?>>
public enum ClassField extends Enum<ClassField> implements Field<Class<?>>
Various strategies for marshalling a Class.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIndex()Returns the index of this field.FieldMarshaller<Class<?>>getMarshaller()Returns the marshaller for this field.static ClassFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static ClassField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final ClassField ANY
-
ID
public static final ClassField ID
-
NAME
public static final ClassField NAME
-
FIELD
public static final ClassField FIELD
-
ARRAY
public static final ClassField ARRAY
-
-
Method Detail
-
values
public static ClassField[] 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 (ClassField c : ClassField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClassField 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
-
getIndex
public int getIndex()
Description copied from interface:FieldReturns the index of this field.
-
getMarshaller
public FieldMarshaller<Class<?>> getMarshaller()
Description copied from interface:FieldReturns the marshaller for this field.- Specified by:
getMarshallerin interfaceField<Class<?>>- Returns:
- the marshaller for this field.
-
-