Package com.hierynomus.ntlm.av
Enum AvId
- java.lang.Object
-
- java.lang.Enum<AvId>
-
- com.hierynomus.ntlm.av.AvId
-
- All Implemented Interfaces:
EnumWithValue<AvId>
,java.io.Serializable
,java.lang.Comparable<AvId>
public enum AvId extends java.lang.Enum<AvId> implements EnumWithValue<AvId>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.hierynomus.protocol.commons.EnumWithValue
EnumWithValue.EnumUtils
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MsvAvChannelBindings
MsvAvDnsComputerName
MsvAvDnsDomainName
MsvAvDnsTreeName
MsvAvEOL
MsvAvFlags
MsvAvNbComputerName
MsvAvNbDomainName
MsvAvSingleHost
MsvAvTargetName
MsvAvTimestamp
-
Field Summary
Fields Modifier and Type Field Description private long
value
-
Constructor Summary
Constructors Modifier Constructor Description private
AvId(long i)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getValue()
static AvId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AvId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MsvAvEOL
public static final AvId MsvAvEOL
-
MsvAvNbComputerName
public static final AvId MsvAvNbComputerName
-
MsvAvNbDomainName
public static final AvId MsvAvNbDomainName
-
MsvAvDnsComputerName
public static final AvId MsvAvDnsComputerName
-
MsvAvDnsDomainName
public static final AvId MsvAvDnsDomainName
-
MsvAvDnsTreeName
public static final AvId MsvAvDnsTreeName
-
MsvAvFlags
public static final AvId MsvAvFlags
-
MsvAvTimestamp
public static final AvId MsvAvTimestamp
-
MsvAvSingleHost
public static final AvId MsvAvSingleHost
-
MsvAvTargetName
public static final AvId MsvAvTargetName
-
MsvAvChannelBindings
public static final AvId MsvAvChannelBindings
-
-
Method Detail
-
values
public static AvId[] 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 (AvId c : AvId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AvId 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<AvId>
-
-