nl.coderight.jazz.form.field.scrollable
Enum ScrollableField.ScrollBarCorner

java.lang.Object
  extended by java.lang.Enum<ScrollableField.ScrollBarCorner>
      extended by nl.coderight.jazz.form.field.scrollable.ScrollableField.ScrollBarCorner
All Implemented Interfaces:
Serializable, Comparable<ScrollableField.ScrollBarCorner>
Enclosing class:
ScrollableField<V>

public static enum ScrollableField.ScrollBarCorner
extends Enum<ScrollableField.ScrollBarCorner>

Enumeration of possible scroll bar corners.


Enum Constant Summary
COLUMN_HEADER
           
LOWER_LEADING_CORNER
           
LOWER_LEFT_CORNER
           
LOWER_RIGHT_CORNER
           
LOWER_TRAILING_CORNER
           
ROW_HEADER
           
UPPER_LEADING_CORNER
           
UPPER_LEFT_CORNER
           
UPPER_RIGHT_CORNER
           
UPPER_TRAILING_CORNER
           
 
Method Summary
 String getCorner()
           
static ScrollableField.ScrollBarCorner valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ScrollableField.ScrollBarCorner[] 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

ROW_HEADER

public static final ScrollableField.ScrollBarCorner ROW_HEADER

COLUMN_HEADER

public static final ScrollableField.ScrollBarCorner COLUMN_HEADER

LOWER_LEFT_CORNER

public static final ScrollableField.ScrollBarCorner LOWER_LEFT_CORNER

LOWER_RIGHT_CORNER

public static final ScrollableField.ScrollBarCorner LOWER_RIGHT_CORNER

LOWER_LEADING_CORNER

public static final ScrollableField.ScrollBarCorner LOWER_LEADING_CORNER

LOWER_TRAILING_CORNER

public static final ScrollableField.ScrollBarCorner LOWER_TRAILING_CORNER

UPPER_LEFT_CORNER

public static final ScrollableField.ScrollBarCorner UPPER_LEFT_CORNER

UPPER_RIGHT_CORNER

public static final ScrollableField.ScrollBarCorner UPPER_RIGHT_CORNER

UPPER_LEADING_CORNER

public static final ScrollableField.ScrollBarCorner UPPER_LEADING_CORNER

UPPER_TRAILING_CORNER

public static final ScrollableField.ScrollBarCorner UPPER_TRAILING_CORNER
Method Detail

values

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

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

valueOf

public static ScrollableField.ScrollBarCorner 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

getCorner

public String getCorner()


Copyright 2010 CodeRight, All rights reserved.