public enum WbemCIMType extends Enum<WbemCIMType>
| Enum Constant and Description |
|---|
BOOLEAN |
CHAR16 |
DATETIME |
OBJECT |
REAL32 |
REAL64 |
REFERENCE |
SINT16 |
SINT32 |
SINT64 |
SINT8 |
STRING |
UNIT16 |
UNIT32 |
UNIT64 |
UNIT8 |
| Modifier and Type | Field and Description |
|---|---|
int |
code |
| Modifier and Type | Method and Description |
|---|---|
static WbemCIMType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WbemCIMType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WbemCIMType SINT8
public static final WbemCIMType UNIT8
public static final WbemCIMType SINT16
public static final WbemCIMType UNIT16
public static final WbemCIMType SINT32
public static final WbemCIMType UNIT32
public static final WbemCIMType SINT64
public static final WbemCIMType UNIT64
public static final WbemCIMType REAL32
public static final WbemCIMType REAL64
public static final WbemCIMType BOOLEAN
public static final WbemCIMType STRING
public static final WbemCIMType DATETIME
public static final WbemCIMType REFERENCE
public static final WbemCIMType CHAR16
public static final WbemCIMType OBJECT
public static WbemCIMType[] values()
for (WbemCIMType c : WbemCIMType.values()) System.out.println(c);
public static WbemCIMType 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 © 2020. All rights reserved.