net.sf.jett.model
Enum Block.Direction

java.lang.Object
  extended by java.lang.Enum<Block.Direction>
      extended by net.sf.jett.model.Block.Direction
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Block.Direction>
Enclosing class:
Block

public static enum Block.Direction
extends java.lang.Enum<Block.Direction>

Possible directionalities of the Block.


Enum Constant Summary
HORIZONTAL
          This Block has horizontal directionality.
NONE
          This Block has no directionality.
VERTICAL
          This Block has vertical directionality.
 
Method Summary
static Block.Direction valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Block.Direction[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VERTICAL

public static final Block.Direction VERTICAL
This Block has vertical directionality.


HORIZONTAL

public static final Block.Direction HORIZONTAL
This Block has horizontal directionality.


NONE

public static final Block.Direction NONE
This Block has no directionality.

Method Detail

values

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

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

valueOf

public static Block.Direction 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


Copyright © 2012-2013 Jett Team. All Rights Reserved.