Package io.netty.handler.codec.mqtt
Enum MqttProperties.MqttPropertyType
- java.lang.Object
-
- java.lang.Enum<MqttProperties.MqttPropertyType>
-
- io.netty.handler.codec.mqtt.MqttProperties.MqttPropertyType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MqttProperties.MqttPropertyType>
- Enclosing class:
- MqttProperties
@Deprecated public static enum MqttProperties.MqttPropertyType extends java.lang.Enum<MqttProperties.MqttPropertyType>
Deprecated.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGNED_CLIENT_IDENTIFIER
Deprecated.AUTHENTICATION_DATA
Deprecated.AUTHENTICATION_METHOD
Deprecated.CONTENT_TYPE
Deprecated.CORRELATION_DATA
Deprecated.MAXIMUM_PACKET_SIZE
Deprecated.MAXIMUM_QOS
Deprecated.PAYLOAD_FORMAT_INDICATOR
Deprecated.PUBLICATION_EXPIRY_INTERVAL
Deprecated.REASON_STRING
Deprecated.RECEIVE_MAXIMUM
Deprecated.REQUEST_PROBLEM_INFORMATION
Deprecated.REQUEST_RESPONSE_INFORMATION
Deprecated.RESPONSE_INFORMATION
Deprecated.RESPONSE_TOPIC
Deprecated.RETAIN_AVAILABLE
Deprecated.SERVER_KEEP_ALIVE
Deprecated.SERVER_REFERENCE
Deprecated.SESSION_EXPIRY_INTERVAL
Deprecated.SHARED_SUBSCRIPTION_AVAILABLE
Deprecated.SUBSCRIPTION_IDENTIFIER
Deprecated.SUBSCRIPTION_IDENTIFIER_AVAILABLE
Deprecated.TOPIC_ALIAS
Deprecated.TOPIC_ALIAS_MAXIMUM
Deprecated.USER_PROPERTY
Deprecated.WILDCARD_SUBSCRIPTION_AVAILABLE
Deprecated.WILL_DELAY_INTERVAL
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
value()
Deprecated.static MqttProperties.MqttPropertyType
valueOf(int type)
Deprecated.Returns the enum constant of this type with the specified name.static MqttProperties.MqttPropertyType
valueOf(java.lang.String name)
Deprecated.Returns the enum constant of this type with the specified name.static MqttProperties.MqttPropertyType[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PAYLOAD_FORMAT_INDICATOR
public static final MqttProperties.MqttPropertyType PAYLOAD_FORMAT_INDICATOR
Deprecated.
-
REQUEST_PROBLEM_INFORMATION
public static final MqttProperties.MqttPropertyType REQUEST_PROBLEM_INFORMATION
Deprecated.
-
REQUEST_RESPONSE_INFORMATION
public static final MqttProperties.MqttPropertyType REQUEST_RESPONSE_INFORMATION
Deprecated.
-
MAXIMUM_QOS
public static final MqttProperties.MqttPropertyType MAXIMUM_QOS
Deprecated.
-
RETAIN_AVAILABLE
public static final MqttProperties.MqttPropertyType RETAIN_AVAILABLE
Deprecated.
-
WILDCARD_SUBSCRIPTION_AVAILABLE
public static final MqttProperties.MqttPropertyType WILDCARD_SUBSCRIPTION_AVAILABLE
Deprecated.
-
SUBSCRIPTION_IDENTIFIER_AVAILABLE
public static final MqttProperties.MqttPropertyType SUBSCRIPTION_IDENTIFIER_AVAILABLE
Deprecated.
-
SHARED_SUBSCRIPTION_AVAILABLE
public static final MqttProperties.MqttPropertyType SHARED_SUBSCRIPTION_AVAILABLE
Deprecated.
-
SERVER_KEEP_ALIVE
public static final MqttProperties.MqttPropertyType SERVER_KEEP_ALIVE
Deprecated.
-
RECEIVE_MAXIMUM
public static final MqttProperties.MqttPropertyType RECEIVE_MAXIMUM
Deprecated.
-
TOPIC_ALIAS_MAXIMUM
public static final MqttProperties.MqttPropertyType TOPIC_ALIAS_MAXIMUM
Deprecated.
-
TOPIC_ALIAS
public static final MqttProperties.MqttPropertyType TOPIC_ALIAS
Deprecated.
-
PUBLICATION_EXPIRY_INTERVAL
public static final MqttProperties.MqttPropertyType PUBLICATION_EXPIRY_INTERVAL
Deprecated.
-
SESSION_EXPIRY_INTERVAL
public static final MqttProperties.MqttPropertyType SESSION_EXPIRY_INTERVAL
Deprecated.
-
WILL_DELAY_INTERVAL
public static final MqttProperties.MqttPropertyType WILL_DELAY_INTERVAL
Deprecated.
-
MAXIMUM_PACKET_SIZE
public static final MqttProperties.MqttPropertyType MAXIMUM_PACKET_SIZE
Deprecated.
-
SUBSCRIPTION_IDENTIFIER
public static final MqttProperties.MqttPropertyType SUBSCRIPTION_IDENTIFIER
Deprecated.
-
CONTENT_TYPE
public static final MqttProperties.MqttPropertyType CONTENT_TYPE
Deprecated.
-
RESPONSE_TOPIC
public static final MqttProperties.MqttPropertyType RESPONSE_TOPIC
Deprecated.
-
ASSIGNED_CLIENT_IDENTIFIER
public static final MqttProperties.MqttPropertyType ASSIGNED_CLIENT_IDENTIFIER
Deprecated.
-
AUTHENTICATION_METHOD
public static final MqttProperties.MqttPropertyType AUTHENTICATION_METHOD
Deprecated.
-
RESPONSE_INFORMATION
public static final MqttProperties.MqttPropertyType RESPONSE_INFORMATION
Deprecated.
-
SERVER_REFERENCE
public static final MqttProperties.MqttPropertyType SERVER_REFERENCE
Deprecated.
-
REASON_STRING
public static final MqttProperties.MqttPropertyType REASON_STRING
Deprecated.
-
USER_PROPERTY
public static final MqttProperties.MqttPropertyType USER_PROPERTY
Deprecated.
-
CORRELATION_DATA
public static final MqttProperties.MqttPropertyType CORRELATION_DATA
Deprecated.
-
AUTHENTICATION_DATA
public static final MqttProperties.MqttPropertyType AUTHENTICATION_DATA
Deprecated.
-
-
Method Detail
-
values
public static MqttProperties.MqttPropertyType[] values()
Deprecated.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 (MqttProperties.MqttPropertyType c : MqttProperties.MqttPropertyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MqttProperties.MqttPropertyType valueOf(java.lang.String name)
Deprecated.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
-
value
public int value()
Deprecated.
-
valueOf
public static MqttProperties.MqttPropertyType valueOf(int type)
Deprecated.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:
type
- 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
-
-