SourceForge.net Logo
aXSL API 0.2

org.axsl.common.value
Enum UnicodeBidi

java.lang.Object
  extended by java.lang.Enum<UnicodeBidi>
      extended by org.axsl.common.value.UnicodeBidi
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UnicodeBidi>

public enum UnicodeBidi
extends java.lang.Enum<UnicodeBidi>

Enumeration of possible unicode-bidi values.

See Also:
"XSL-FO, 1.1, Section 7.29.6 (page 400)."

Enum Constant Summary
BIDI_OVERRIDE
          For inline-level elements and block-level elements that contain only inline-level elements, an override is created, which makes the reordering conform exactly to the "direction" property, ignoring the implicit part of the bidirectional algorithm.
EMBED
          If the element is inline-level, this value opens an additional level of embedding with respect to the bidirectional algorithm.
NORMAL
          The element does not open an additional level of embedding with respect to the bidirectional algorithm.
 
Method Summary
static UnicodeBidi valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UnicodeBidi[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NORMAL

public static final UnicodeBidi NORMAL
The element does not open an additional level of embedding with respect to the bidirectional algorithm.


EMBED

public static final UnicodeBidi EMBED
If the element is inline-level, this value opens an additional level of embedding with respect to the bidirectional algorithm.


BIDI_OVERRIDE

public static final UnicodeBidi BIDI_OVERRIDE
For inline-level elements and block-level elements that contain only inline-level elements, an override is created, which makes the reordering conform exactly to the "direction" property, ignoring the implicit part of the bidirectional algorithm.

Method Detail

values

public static final UnicodeBidi[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(UnicodeBidi c : UnicodeBidi.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static UnicodeBidi valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

SourceForge.net Logo
aXSL API 0.2

This documentation was created August 8 2007 by The aXSL Group and may be freely copied. See license for details.