org.odftoolkit.odfdom.dom.attribute.table
Enum TableTypeAttribute.Value

java.lang.Object
  extended by java.lang.Enum<TableTypeAttribute.Value>
      extended by org.odftoolkit.odfdom.dom.attribute.table.TableTypeAttribute.Value
All Implemented Interfaces:
Serializable, Comparable<TableTypeAttribute.Value>
Enclosing class:
TableTypeAttribute

public static enum TableTypeAttribute.Value
extends Enum<TableTypeAttribute.Value>

The value set of table:type.


Enum Constant Summary
COLUMN
           
COLUMN_PERCENTAGE
           
INDEX
           
MEMBER_DIFFERENCE
           
MEMBER_PERCENTAGE
           
MEMBER_PERCENTAGE_DIFFERENCE
           
NONE
           
ROW
           
ROW_PERCENTAGE
           
RUNNING_TOTAL
           
TABLE
           
TOTAL_PERCENTAGE
           
 
Method Summary
static TableTypeAttribute.Value enumValueOf(String value)
           
 String toString()
           
static TableTypeAttribute.Value valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TableTypeAttribute.Value[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

COLUMN

public static final TableTypeAttribute.Value COLUMN

COLUMN_PERCENTAGE

public static final TableTypeAttribute.Value COLUMN_PERCENTAGE

INDEX

public static final TableTypeAttribute.Value INDEX

MEMBER_DIFFERENCE

public static final TableTypeAttribute.Value MEMBER_DIFFERENCE

MEMBER_PERCENTAGE

public static final TableTypeAttribute.Value MEMBER_PERCENTAGE

MEMBER_PERCENTAGE_DIFFERENCE

public static final TableTypeAttribute.Value MEMBER_PERCENTAGE_DIFFERENCE

NONE

public static final TableTypeAttribute.Value NONE

ROW

public static final TableTypeAttribute.Value ROW

ROW_PERCENTAGE

public static final TableTypeAttribute.Value ROW_PERCENTAGE

RUNNING_TOTAL

public static final TableTypeAttribute.Value RUNNING_TOTAL

TABLE

public static final TableTypeAttribute.Value TABLE

TOTAL_PERCENTAGE

public static final TableTypeAttribute.Value TOTAL_PERCENTAGE
Method Detail

values

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

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

valueOf

public static TableTypeAttribute.Value valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toString

public String toString()
Overrides:
toString in class Enum<TableTypeAttribute.Value>

enumValueOf

public static TableTypeAttribute.Value enumValueOf(String value)


Copyright © 2008-2017 The Apache Software Foundation. All Rights Reserved.