public enum VariableMask extends java.lang.Enum<VariableMask>
| Enum Constant and Description |
|---|
READ_ONLY |
READ_WRITE |
WRITE_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static VariableMask |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VariableMask[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VariableMask READ_ONLY
public static final VariableMask WRITE_ONLY
public static final VariableMask READ_WRITE
public static VariableMask[] values()
for (VariableMask c : VariableMask.values()) System.out.println(c);
public static VariableMask valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2015 Whizzo Software LLC. All rights reserved.