com.smartgwt.client.types
Enum EdgeName

java.lang.Object
  extended by java.lang.Enum<EdgeName>
      extended by com.smartgwt.client.types.EdgeName
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<EdgeName>

public enum EdgeName
extends Enum<EdgeName>
implements ValueEnum

An edge or corner of a rectange, or it's center. Used in APIs such as resizeFrom and Canvas.getEventEdge.


Enum Constant Summary
B
          bottom edge
BL
          bottom-left corner
BR
          bottom-right corner
C
          center
L
          left edge
R
          right edge
T
          top edge
TL
          top-left corner
TR
          top-right corner
 
Method Summary
 String getValue()
           
static EdgeName valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EdgeName[] 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

T

public static final EdgeName T
top edge


B

public static final EdgeName B
bottom edge


L

public static final EdgeName L
left edge


R

public static final EdgeName R
right edge


TL

public static final EdgeName TL
top-left corner


TR

public static final EdgeName TR
top-right corner


BL

public static final EdgeName BL
bottom-left corner


BR

public static final EdgeName BR
bottom-right corner


C

public static final EdgeName C
center

Method Detail

values

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

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

valueOf

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

getValue

public String getValue()
Specified by:
getValue in interface ValueEnum