Language
	
	Asturianu (ast) 
	Català (ca) 
	Čeština (cs) 
	Dansk (da) 
	Deutsch (de) 
	
	English [US] (en-US) 
	Español (es) 
	Esperanto (eo) 
	Eesti keel (et) 
	Euskara (eu) 
	Français (fr) 
	Gàidhlig (gd) 
	Galego (gl) 
	Italiano (it) 
	Lietuvių (lt) 
	Magyar (hu) 
	Nederlands (nl) 
	Norsk (no) 
	Polski (pl) 
	Português [do Brasil] (pt-BR) 
	Português [Europeu] (pt) 
	Română (ro) 
	Slovenčina (sk) 
	Slovenščina (sl) 
	Suomi (fi) 
	Svenska (sv) 
	Yкраїнська (uk) 
	Tiếng Việt (vi) 
	Türkçe (tr) 
	ኦሮሚኛ (om) 
	Հայերեն (hy) 
	Ελληνικά (el) 
	български език (bg) 
	Русский (ru) 
	Cрпски [ћирилицом] (sr) 
	
	עברית (he) 
	हिन्दी (hi) 
	ភាសាខ្មែរ (km) 
	தமிழ் (ta) 
	ภาษาไทย (th) 
	简体中文 (zh-CN) 
	正體中文 (zh-TW) 
	日本語 (ja) 
	한국어 (ko) 
	 
	
  
  
    
     The Free and Open Productivity Suite
   
      
      
 
 
com.sun.star.uno 
 
Class  Enum 
java.lang.Object
  |
  +--com.sun.star.uno.Enum 
 
Direct Known Subclasses:  TypeClass  
 
 
public abstract class Enum extends java.lang.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.
 
Since: UDK1.0 
 
 
 
Constructor Summary   
 
protected   
Enum  (int value)
 
          Constructs a enum value. 
 
 
 
Method Summary   
 
 int  
getValue  ()
 
          Get the integer value of an enum value. 
 
  
Methods inherited from class java.lang.Object  
 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
 
 
 
Enum 
protected Enum (int value) 
Constructs a enum value.
 
 Parameters: value - the integer value of this enum value. 
 
getValue 
public final int getValue () 
Get the integer value of an enum value.
 
Returns: the integer value.