com.inmethod.grid
Enum SizeUnit

java.lang.Object
  extended by java.lang.Enum<SizeUnit>
      extended by com.inmethod.grid.SizeUnit
All Implemented Interfaces:
Serializable, Comparable<SizeUnit>

public enum SizeUnit
extends Enum<SizeUnit>

Represents a HTML size unit.

Author:
Matej Knopp

Enum Constant Summary
EM
          CSS EM unit
EX
          CSS EX unit
PX
          CSS PX unit
 
Method Summary
 String getValue()
          Returns the string representation of the unit.
static SizeUnit valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SizeUnit[] 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

EM

public static final SizeUnit EM
CSS EM unit


PX

public static final SizeUnit PX
CSS PX unit


EX

public static final SizeUnit EX
CSS EX unit

Method Detail

values

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

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

valueOf

public static SizeUnit 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()
Returns the string representation of the unit.

Returns:
string representation of the unit


Copyright © 2007–2014 inMethod s.r.o.. All rights reserved.