|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CurrencySymbolPosition>
net.sf.mpxj.CurrencySymbolPosition
public enum CurrencySymbolPosition
Instances of this class represent enumerated currency symbol position values.
| Enum Constant Summary | |
|---|---|
AFTER
|
|
AFTER_WITH_SPACE
|
|
BEFORE
|
|
BEFORE_WITH_SPACE
|
|
| Method Summary | |
|---|---|
static CurrencySymbolPosition |
getInstance(int value)
Retrieve a CurrencySymbolPosition instance representing the supplied value. |
int |
getValue()
Retrieves the int representation of the currency symbol position value. |
String |
toString()
Returns a string representation of the currency symbol position type to be used as part of an MPX file. |
static CurrencySymbolPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CurrencySymbolPosition[] |
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, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CurrencySymbolPosition AFTER
public static final CurrencySymbolPosition BEFORE
public static final CurrencySymbolPosition AFTER_WITH_SPACE
public static final CurrencySymbolPosition BEFORE_WITH_SPACE
| Method Detail |
|---|
public static CurrencySymbolPosition[] values()
for (CurrencySymbolPosition c : CurrencySymbolPosition.values()) System.out.println(c);
public static CurrencySymbolPosition valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic int getValue()
getValue in interface MpxjEnumpublic static CurrencySymbolPosition getInstance(int value)
value - currency symbol position value
public String toString()
toString in class Enum<CurrencySymbolPosition>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||