Enum OpenOfficeManager.ManagerState
- java.lang.Object
-
- java.lang.Enum<OpenOfficeManager.ManagerState>
-
- org.xwiki.officeimporter.openoffice.OpenOfficeManager.ManagerState
-
- All Implemented Interfaces:
Serializable
,Comparable<OpenOfficeManager.ManagerState>
- Enclosing interface:
- OpenOfficeManager
@Deprecated public static enum OpenOfficeManager.ManagerState extends Enum<OpenOfficeManager.ManagerState>
Deprecated.since 5.0M2, useOfficeServer.ServerState
insteadEnum type used to represent the state ofOpenOfficeManager
.- Since:
- 1.9M1
- Version:
- $Id: aa613d959acb890008a003eadbac1f7d92119ae5 $
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONF_ERROR
Deprecated.Configuration error.CONNECTED
Deprecated.Connected.ERROR
Deprecated.Error.NOT_CONNECTED
Deprecated.Not connected.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
toString()
Deprecated.static OpenOfficeManager.ManagerState
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static OpenOfficeManager.ManagerState[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONNECTED
public static final OpenOfficeManager.ManagerState CONNECTED
Deprecated.Connected.
-
NOT_CONNECTED
public static final OpenOfficeManager.ManagerState NOT_CONNECTED
Deprecated.Not connected.
-
CONF_ERROR
public static final OpenOfficeManager.ManagerState CONF_ERROR
Deprecated.Configuration error.
-
ERROR
public static final OpenOfficeManager.ManagerState ERROR
Deprecated.Error.
-
-
Method Detail
-
values
public static OpenOfficeManager.ManagerState[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OpenOfficeManager.ManagerState c : OpenOfficeManager.ManagerState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpenOfficeManager.ManagerState valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
Deprecated.- Overrides:
toString
in classEnum<OpenOfficeManager.ManagerState>
-
-