KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > WbemObjectTextFormatEnum


1 // GENERATED. DO NOT MODIFY
2
package wmi;
3
4 import com4j.*;
5
6 /**
7  * Defines object text formats
8  */

9 public enum WbemObjectTextFormatEnum implements ComEnum {
10     wbemObjectTextFormatCIMDTD20(1),
11     wbemObjectTextFormatWMIDTD20(2),
12     ;
13
14     private final int value;
15     WbemObjectTextFormatEnum(int value) { this.value=value; }
16     public int comEnumValue() { return value; }
17 }
18
Popular Tags