net.sourceforge.plantuml.salt.element
Enum TableStrategy

java.lang.Object
  extended by java.lang.Enum<TableStrategy>
      extended by net.sourceforge.plantuml.salt.element.TableStrategy
All Implemented Interfaces:
Serializable, Comparable<TableStrategy>

public enum TableStrategy
extends Enum<TableStrategy>


Enum Constant Summary
DRAW_ALL
           
DRAW_HORIZONTAL
           
DRAW_NONE
           
DRAW_OUTSIDE
           
DRAW_VERTICAL
           
 
Method Summary
static TableStrategy fromChar(char c)
           
static TableStrategy valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TableStrategy[] 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

DRAW_NONE

public static final TableStrategy DRAW_NONE

DRAW_OUTSIDE

public static final TableStrategy DRAW_OUTSIDE

DRAW_HORIZONTAL

public static final TableStrategy DRAW_HORIZONTAL

DRAW_VERTICAL

public static final TableStrategy DRAW_VERTICAL

DRAW_ALL

public static final TableStrategy DRAW_ALL
Method Detail

values

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

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

valueOf

public static TableStrategy 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

fromChar

public static TableStrategy fromChar(char c)


Copyright © 2013. All Rights Reserved.