public enum OLE_TRISTATE extends Enum<OLE_TRISTATE>
This enum was generated using tlbimp on stdole2.tlb
Enum Constant and Description |
---|
Checked
The value of this constant is 1
|
Gray
The value of this constant is 2
|
Unchecked
The value of this constant is 0
|
Modifier and Type | Method and Description |
---|---|
static OLE_TRISTATE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OLE_TRISTATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OLE_TRISTATE Unchecked
The value of this constant is 0
public static final OLE_TRISTATE Checked
The value of this constant is 1
public static final OLE_TRISTATE Gray
The value of this constant is 2
public static OLE_TRISTATE[] values()
for (OLE_TRISTATE c : OLE_TRISTATE.values()) System.out.println(c);
public static OLE_TRISTATE 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 © 2014. All rights reserved.