Package org.hcjf.io.net.http.http2
Enum Http2Frame.Settings
- java.lang.Object
-
- java.lang.Enum<Http2Frame.Settings>
-
- org.hcjf.io.net.http.http2.Http2Frame.Settings
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Http2Frame.Settings>,java.lang.constant.Constable
- Enclosing class:
- Http2Frame
public static enum Http2Frame.Settings extends java.lang.Enum<Http2Frame.Settings>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SETTINGS_ENABLE_PUSHSETTINGS_HEADER_TABLE_SIZESETTINGS_INITIAL_WINDOW_SIZESETTINGS_MAX_CONCURRENT_STREAMSSETTINGS_MAX_FRAME_SIZESETTINGS_MAX_HEADER_LIST_SIZE
-
Method Summary
Modifier and Type Method Description bytegetId()static Http2Frame.SettingsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Http2Frame.Settings[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SETTINGS_HEADER_TABLE_SIZE
public static final Http2Frame.Settings SETTINGS_HEADER_TABLE_SIZE
-
SETTINGS_ENABLE_PUSH
public static final Http2Frame.Settings SETTINGS_ENABLE_PUSH
-
SETTINGS_MAX_CONCURRENT_STREAMS
public static final Http2Frame.Settings SETTINGS_MAX_CONCURRENT_STREAMS
-
SETTINGS_INITIAL_WINDOW_SIZE
public static final Http2Frame.Settings SETTINGS_INITIAL_WINDOW_SIZE
-
SETTINGS_MAX_FRAME_SIZE
public static final Http2Frame.Settings SETTINGS_MAX_FRAME_SIZE
-
SETTINGS_MAX_HEADER_LIST_SIZE
public static final Http2Frame.Settings SETTINGS_MAX_HEADER_LIST_SIZE
-
-
Method Detail
-
values
public static Http2Frame.Settings[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Http2Frame.Settings 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
-
getId
public byte getId()
-
-