UDK 3.1.0 Java API Reference

com.sun.star.uno
クラス Enum

java.lang.Object
  拡張com.sun.star.uno.Enum
直系の既知のサブクラス:
TypeClass

public abstract class Enum
extends Object

The Enum class is the base class for all classes generated as java binding for the IDL type enum. Each java mapped enum class provides static member of this class which represents the enum values. You cannot create a object of this class or subclass direct, to avoid enum values with integer values outside the defined range.

導入されたバージョン:
UDK1.0

コンストラクタの概要
protected Enum(int value)
          Constructs a enum value.
 
メソッドの概要
 int getValue()
          Get the integer value of an enum value.
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

Enum

protected Enum(int value)
Constructs a enum value.

パラメータ:
value - the integer value of this enum value.
メソッドの詳細

getValue

public final int getValue()
Get the integer value of an enum value.

戻り値:
the integer value.

UDK 3.1.0 Java API Reference