public enum MSMask extends Enum<MSMask>
Enum Constant and Description |
---|
TYPE_ALL_0 |
TYPE_ALL_1 |
TYPE_RESERVED |
TYPE_USED |
Modifier and Type | Method and Description |
---|---|
static MSMask |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MSMask[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MSMask TYPE_ALL_0
public static final MSMask TYPE_USED
public static final MSMask TYPE_ALL_1
public static final MSMask TYPE_RESERVED
public static MSMask[] values()
for (MSMask c : MSMask.values()) System.out.println(c);
public static MSMask valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.