Package org.onosproject.net.pi.model
Enum PiData.Type
- java.lang.Object
-
- java.lang.Enum<PiData.Type>
-
- org.onosproject.net.pi.model.PiData.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PiData.Type>
- Enclosing interface:
- PiData
public static enum PiData.Type extends java.lang.Enum<PiData.Type>
Types of data in a protocol-independent pipeline.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BITSTRING
Bit String.BOOL
Bool.ENUMSTRING
Enum String.ERRORSTRING
Error String.HEADER
Header.HEADERSTACK
Header Stack.HEADERUNION
Header Union.HEADERUNIONSTACK
Header Union Stack.STRUCT
Struct.TUPLE
Tuple.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PiData.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PiData.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BITSTRING
public static final PiData.Type BITSTRING
Bit String.
-
BOOL
public static final PiData.Type BOOL
Bool.
-
TUPLE
public static final PiData.Type TUPLE
Tuple.
-
STRUCT
public static final PiData.Type STRUCT
Struct.
-
HEADER
public static final PiData.Type HEADER
Header.
-
HEADERSTACK
public static final PiData.Type HEADERSTACK
Header Stack.
-
HEADERUNION
public static final PiData.Type HEADERUNION
Header Union.
-
HEADERUNIONSTACK
public static final PiData.Type HEADERUNIONSTACK
Header Union Stack.
-
ENUMSTRING
public static final PiData.Type ENUMSTRING
Enum String.
-
ERRORSTRING
public static final PiData.Type ERRORSTRING
Error String.
-
-
Method Detail
-
values
public static PiData.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 (PiData.Type c : PiData.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 PiData.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
-
-