Enum SMB2NegotiateContextType
- java.lang.Object
-
- java.lang.Enum<SMB2NegotiateContextType>
-
- com.hierynomus.mssmb2.messages.negotiate.SMB2NegotiateContextType
-
- All Implemented Interfaces:
EnumWithValue<SMB2NegotiateContextType>
,java.io.Serializable
,java.lang.Comparable<SMB2NegotiateContextType>
public enum SMB2NegotiateContextType extends java.lang.Enum<SMB2NegotiateContextType> implements EnumWithValue<SMB2NegotiateContextType>
[MS-SMB2] 2.2.3.1 SMB2 NEGOTIATE_CONTEXT Request values - ContextType
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.hierynomus.protocol.commons.EnumWithValue
EnumWithValue.EnumUtils
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SMB2_COMPRESSION_CAPABILITIES
SMB2_ENCRYPTION_CAPABILITIES
SMB2_NETNAME_NEGOTIATE_CONTEXT_ID
SMB2_PREAUTH_INTEGRITY_CAPABILITIES
-
Field Summary
Fields Modifier and Type Field Description private long
value
-
Constructor Summary
Constructors Modifier Constructor Description private
SMB2NegotiateContextType(long value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getValue()
static SMB2NegotiateContextType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SMB2NegotiateContextType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SMB2_PREAUTH_INTEGRITY_CAPABILITIES
public static final SMB2NegotiateContextType SMB2_PREAUTH_INTEGRITY_CAPABILITIES
-
SMB2_ENCRYPTION_CAPABILITIES
public static final SMB2NegotiateContextType SMB2_ENCRYPTION_CAPABILITIES
-
SMB2_COMPRESSION_CAPABILITIES
public static final SMB2NegotiateContextType SMB2_COMPRESSION_CAPABILITIES
-
SMB2_NETNAME_NEGOTIATE_CONTEXT_ID
public static final SMB2NegotiateContextType SMB2_NETNAME_NEGOTIATE_CONTEXT_ID
-
-
Method Detail
-
values
public static SMB2NegotiateContextType[] 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 (SMB2NegotiateContextType c : SMB2NegotiateContextType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SMB2NegotiateContextType 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
-
getValue
public long getValue()
- Specified by:
getValue
in interfaceEnumWithValue<SMB2NegotiateContextType>
-
-