KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > WbemCimtypeEnum


1 // GENERATED. DO NOT MODIFY
2
package wmi;
3
4 import com4j.*;
5
6 /**
7  * Defines the valid CIM Types of a Property value
8  */

9 public enum WbemCimtypeEnum implements ComEnum {
10     wbemCimtypeSint8(16),
11     wbemCimtypeUint8(17),
12     wbemCimtypeSint16(2),
13     wbemCimtypeUint16(18),
14     wbemCimtypeSint32(3),
15     wbemCimtypeUint32(19),
16     wbemCimtypeSint64(20),
17     wbemCimtypeUint64(21),
18     wbemCimtypeReal32(4),
19     wbemCimtypeReal64(5),
20     wbemCimtypeBoolean(11),
21     wbemCimtypeString(8),
22     wbemCimtypeDatetime(101),
23     wbemCimtypeReference(102),
24     wbemCimtypeChar16(103),
25     wbemCimtypeObject(13),
26     ;
27
28     private final int value;
29     WbemCimtypeEnum(int value) { this.value=value; }
30     public int comEnumValue() { return value; }
31 }
32
Popular Tags