SourceForge.net Logo
aXSL API 0.2

org.axsl.common.value
Enum Visibility

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

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

Enumeration of possible visibility values.

See Also:
"XSL-FO, 1.1, Section 7.30.27 (page 413)."

Enum Constant Summary
COLLAPSE
          For rows and column in tables, collapses them.
HIDDEN
          The generated box is invisible (fully transparent), but still affects layout.
VISIBLE
          The generated box is visible.
 
Method Summary
static Visibility valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Visibility[] 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

VISIBLE

public static final Visibility VISIBLE
The generated box is visible.


HIDDEN

public static final Visibility HIDDEN
The generated box is invisible (fully transparent), but still affects layout.


COLLAPSE

public static final Visibility COLLAPSE
For rows and column in tables, collapses them. For other objects, means the same as "hidden".

Method Detail

values

public static final Visibility[] 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(Visibility c : Visibility.values())
        System.out.println(c);

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

valueOf

public static Visibility 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.