Package deltix.qsrv.hf.codec
Enum ClassCodecFactory.Type
- java.lang.Object
-
- java.lang.Enum<ClassCodecFactory.Type>
-
- deltix.qsrv.hf.codec.ClassCodecFactory.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ClassCodecFactory.Type>
- Enclosing class:
- ClassCodecFactory
public static enum ClassCodecFactory.Type extends java.lang.Enum<ClassCodecFactory.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOUND_DECODER
BOUND_ENCODER
BOUND_EXTERNAL_DECODER
UNBOUND_DECODER
UNBOUND_ENCODER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClassCodecFactory.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ClassCodecFactory.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOUND_DECODER
public static final ClassCodecFactory.Type BOUND_DECODER
-
BOUND_EXTERNAL_DECODER
public static final ClassCodecFactory.Type BOUND_EXTERNAL_DECODER
-
BOUND_ENCODER
public static final ClassCodecFactory.Type BOUND_ENCODER
-
UNBOUND_DECODER
public static final ClassCodecFactory.Type UNBOUND_DECODER
-
UNBOUND_ENCODER
public static final ClassCodecFactory.Type UNBOUND_ENCODER
-
-
Method Detail
-
values
public static ClassCodecFactory.Type[] 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 (ClassCodecFactory.Type c : ClassCodecFactory.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClassCodecFactory.Type 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
-
-