com.guiseframework.converter
Enum NumberStringLiteralConverter.Style

java.lang.Object
  extended by java.lang.Enum<NumberStringLiteralConverter.Style>
      extended by com.guiseframework.converter.NumberStringLiteralConverter.Style
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NumberStringLiteralConverter.Style>
Enclosing interface:
NumberStringLiteralConverter<V extends java.lang.Number>

public static enum NumberStringLiteralConverter.Style
extends java.lang.Enum<NumberStringLiteralConverter.Style>

The style of the number in its literal form.


Enum Constant Summary
CURRENCY
          Money formatting.
INTEGER
          Integer formatting.
NUMBER
          General number formatting.
PERCENT
          Percentage representation.
 
Method Summary
static NumberStringLiteralConverter.Style valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NumberStringLiteralConverter.Style[] 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

NUMBER

public static final NumberStringLiteralConverter.Style NUMBER
General number formatting.


CURRENCY

public static final NumberStringLiteralConverter.Style CURRENCY
Money formatting.


PERCENT

public static final NumberStringLiteralConverter.Style PERCENT
Percentage representation.


INTEGER

public static final NumberStringLiteralConverter.Style INTEGER
Integer formatting.

Method Detail

values

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

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

valueOf

public static NumberStringLiteralConverter.Style 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


Copyright © 2005-2010 GlobalMentor, Inc. All Rights Reserved.