|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AxslObject>
org.foray.fotree.axsl.AxslObject
public enum AxslObject
An enumeration for object extensions to the XSL-FO standard. These objects live in the "axsl" namespace.
Enum Constant Summary | |
---|---|
METADATA
Constant indicating a "metadata" FO. |
Method Summary | |
---|---|
static AxslObject |
extensionValueOf(String name)
Similar to the Java 1.5 Enum valueOf(String) method, but operates on the XSL-FO name of the object instead of its enumerated name. |
String |
toExtensionName()
Converts an object name enumeration to its name. |
static AxslObject |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AxslObject[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AxslObject METADATA
Method Detail |
---|
public static AxslObject[] values()
for (AxslObject c : AxslObject.values()) System.out.println(c);
public static AxslObject valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String toExtensionName()
METADATA
converts to the name "metadata".
public static AxslObject extensionValueOf(String name)
name
- The name of the XSL-FO object for which the enumerated
value is needed.
xslName
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |