Package org.apache.hc.core5.http2.hpack
Enum HPackRepresentation
- java.lang.Object
-
- java.lang.Enum<HPackRepresentation>
-
- org.apache.hc.core5.http2.hpack.HPackRepresentation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HPackRepresentation>
enum HPackRepresentation extends java.lang.Enum<HPackRepresentation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NEVER_INDEXED
WITH_INDEXING
WITHOUT_INDEXING
-
Constructor Summary
Constructors Modifier Constructor Description private
HPackRepresentation()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HPackRepresentation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HPackRepresentation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WITH_INDEXING
public static final HPackRepresentation WITH_INDEXING
-
WITHOUT_INDEXING
public static final HPackRepresentation WITHOUT_INDEXING
-
NEVER_INDEXED
public static final HPackRepresentation NEVER_INDEXED
-
-
Method Detail
-
values
public static HPackRepresentation[] 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 (HPackRepresentation c : HPackRepresentation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HPackRepresentation 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
-
-