|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 枚举常量 | 字段 | 方法 | 详细信息: 枚举常量 | 字段 | 方法 | |||||||||
java.lang.Objectjava.lang.Enum<WbemCimTypeEnum>
cn.chenlichao.wmi4j.consts.WbemCimTypeEnum
public enum WbemCimTypeEnum
The WbemCimtypeEnum constants define the valid CIM types of a property value. Created by chenlichao on 14-7-26.
| 枚举常量摘要 | |
|---|---|
Boolean
11(0xB): Boolean value |
|
Char16
103(0x67): 16-bit character |
|
Datetime
101(0x65): Date/time value |
|
Object
13(0xD): CIM object |
|
Real32
4(0x4): 32-bit real number |
|
Real64
5(0x5): 64-bit real number |
|
Reference
102(0x66): Reference to a CIM object |
|
Sint16
2(0x2): Signed 16-bit integer |
|
Sint32
3(0x3): Signed 32-bit integer |
|
Sint64
20(0x14): Signed 64-bit integer |
|
Sint8
16(0x10): Signed 8-bit integer |
|
String
8(0x8): String |
|
Uint16
18(0x12): Unsigned 16-bit integer |
|
Uint32
19(0x13): Unsigned 32-bit integer |
|
Uint64
21(0x15): Unsigned 64-bit integer |
|
Uint8
17(0x11): Unsigned 8-bit integer |
|
| 方法摘要 | |
|---|---|
int |
getValue()
|
static WbemCimTypeEnum |
parse(int value)
|
static WbemCimTypeEnum |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。 |
static WbemCimTypeEnum[] |
values()
按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。 |
| 从类 java.lang.Enum 继承的方法 |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| 从类 java.lang.Object 继承的方法 |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| 枚举常量详细信息 |
|---|
public static final WbemCimTypeEnum Sint16
public static final WbemCimTypeEnum Sint32
public static final WbemCimTypeEnum Real32
public static final WbemCimTypeEnum Real64
public static final WbemCimTypeEnum String
public static final WbemCimTypeEnum Boolean
public static final WbemCimTypeEnum Object
public static final WbemCimTypeEnum Sint8
public static final WbemCimTypeEnum Uint8
public static final WbemCimTypeEnum Uint16
public static final WbemCimTypeEnum Uint32
public static final WbemCimTypeEnum Sint64
public static final WbemCimTypeEnum Uint64
public static final WbemCimTypeEnum Datetime
public static final WbemCimTypeEnum Reference
public static final WbemCimTypeEnum Char16
| 方法详细信息 |
|---|
public static WbemCimTypeEnum[] values()
for (WbemCimTypeEnum c : WbemCimTypeEnum.values()) System.out.println(c);
public static WbemCimTypeEnum valueOf(String name)
name - 要返回的枚举常量的名称。
如果该枚举类型没有带有指定名称的常量, - 则抛出 IllegalArgumentExceptionpublic int getValue()
public static WbemCimTypeEnum parse(int value)
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 枚举常量 | 字段 | 方法 | 详细信息: 枚举常量 | 字段 | 方法 | |||||||||