Package com.hierynomus.ntlm.messages
Enum WindowsVersion.ProductMinorVersion
- java.lang.Object
-
- java.lang.Enum<WindowsVersion.ProductMinorVersion>
-
- com.hierynomus.ntlm.messages.WindowsVersion.ProductMinorVersion
-
- All Implemented Interfaces:
EnumWithValue<WindowsVersion.ProductMinorVersion>
,java.io.Serializable
,java.lang.Comparable<WindowsVersion.ProductMinorVersion>
- Enclosing class:
- WindowsVersion
public static enum WindowsVersion.ProductMinorVersion extends java.lang.Enum<WindowsVersion.ProductMinorVersion> implements EnumWithValue<WindowsVersion.ProductMinorVersion>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.hierynomus.protocol.commons.EnumWithValue
EnumWithValue.EnumUtils
-
-
Enum Constant Summary
Enum Constants Enum Constant Description WINDOWS_MINOR_VERSION_0
WINDOWS_MINOR_VERSION_1
WINDOWS_MINOR_VERSION_2
WINDOWS_MINOR_VERSION_3
-
Field Summary
Fields Modifier and Type Field Description private long
value
-
Constructor Summary
Constructors Modifier Constructor Description private
ProductMinorVersion(int value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getValue()
static WindowsVersion.ProductMinorVersion
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WindowsVersion.ProductMinorVersion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WINDOWS_MINOR_VERSION_0
public static final WindowsVersion.ProductMinorVersion WINDOWS_MINOR_VERSION_0
-
WINDOWS_MINOR_VERSION_1
public static final WindowsVersion.ProductMinorVersion WINDOWS_MINOR_VERSION_1
-
WINDOWS_MINOR_VERSION_2
public static final WindowsVersion.ProductMinorVersion WINDOWS_MINOR_VERSION_2
-
WINDOWS_MINOR_VERSION_3
public static final WindowsVersion.ProductMinorVersion WINDOWS_MINOR_VERSION_3
-
-
Method Detail
-
values
public static WindowsVersion.ProductMinorVersion[] 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 (WindowsVersion.ProductMinorVersion c : WindowsVersion.ProductMinorVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WindowsVersion.ProductMinorVersion 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<WindowsVersion.ProductMinorVersion>
-
-