eu.webtoolkit.jwt
Enum WFont.Size

java.lang.Object
  extended by java.lang.Enum<WFont.Size>
      extended by eu.webtoolkit.jwt.WFont.Size
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WFont.Size>
Enclosing class:
WFont

public static enum WFont.Size
extends java.lang.Enum<WFont.Size>

The font size.


Enum Constant Summary
FixedSize
          Explicit size, See also fontFixedSize().
Large
          Large.
Larger
          Relatively larger than the parent widget.
Medium
          Medium, default.
Small
          Small.
Smaller
          Relatively smaller than the parent widget.
XLarge
          Extra large.
XSmall
          Extra small.
XXLarge
          Extra Extra large.
XXSmall
          Extra Extra small.
 
Method Summary
 int getValue()
          Returns the numerical representation of this enum.
static WFont.Size valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WFont.Size[] 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

XXSmall

public static final WFont.Size XXSmall
Extra Extra small.


XSmall

public static final WFont.Size XSmall
Extra small.


Small

public static final WFont.Size Small
Small.


Medium

public static final WFont.Size Medium
Medium, default.


Large

public static final WFont.Size Large
Large.


XLarge

public static final WFont.Size XLarge
Extra large.


XXLarge

public static final WFont.Size XXLarge
Extra Extra large.


Smaller

public static final WFont.Size Smaller
Relatively smaller than the parent widget.


Larger

public static final WFont.Size Larger
Relatively larger than the parent widget.


FixedSize

public static final WFont.Size FixedSize
Explicit size, See also fontFixedSize().

Method Detail

values

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

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

valueOf

public static WFont.Size 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
java.lang.NullPointerException - if the argument is null

getValue

public int getValue()
Returns the numerical representation of this enum.