Package com.inet.report
Enum AbstractValueElement.NumberProps
- java.lang.Object
-
- java.lang.Enum<AbstractValueElement.NumberProps>
-
- com.inet.report.AbstractValueElement.NumberProps
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AbstractValueElement.NumberProps>
- Enclosing class:
- AbstractValueElement
public static enum AbstractValueElement.NumberProps extends java.lang.Enum<AbstractValueElement.NumberProps>
FOR INTERNAL USE ONLY
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractValueElement.NumberProps
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AbstractValueElement.NumberProps[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DefaultAttribute
public static final AbstractValueElement.NumberProps DefaultAttribute
-
UseSystemDefaultFormat
public static final AbstractValueElement.NumberProps UseSystemDefaultFormat
-
SystemDefaultNumberType
public static final AbstractValueElement.NumberProps SystemDefaultNumberType
-
NumeralLanguage
public static final AbstractValueElement.NumberProps NumeralLanguage
-
CurrencyPosition
public static final AbstractValueElement.NumberProps CurrencyPosition
-
CurrencySymbol
public static final AbstractValueElement.NumberProps CurrencySymbol
-
CurrencySeparator
public static final AbstractValueElement.NumberProps CurrencySeparator
-
CurrencySymbolType
public static final AbstractValueElement.NumberProps CurrencySymbolType
-
UseOneCurrencySymbolPerPage
public static final AbstractValueElement.NumberProps UseOneCurrencySymbolPerPage
-
DecimalSeparatorsSymbol
public static final AbstractValueElement.NumberProps DecimalSeparatorsSymbol
-
NDecimalPlaces
public static final AbstractValueElement.NumberProps NDecimalPlaces
-
UseLeadingZero
public static final AbstractValueElement.NumberProps UseLeadingZero
-
SuppressIfZero
public static final AbstractValueElement.NumberProps SuppressIfZero
-
ZeroValueString
public static final AbstractValueElement.NumberProps ZeroValueString
-
ZeroValueStringSymbol
public static final AbstractValueElement.NumberProps ZeroValueStringSymbol
-
NegativeType
public static final AbstractValueElement.NumberProps NegativeType
-
UseReverseSignForDisplay
public static final AbstractValueElement.NumberProps UseReverseSignForDisplay
-
AllowFieldClipping
public static final AbstractValueElement.NumberProps AllowFieldClipping
-
UseThousandSeparators
public static final AbstractValueElement.NumberProps UseThousandSeparators
-
ThousandSeparatorsSymbol
public static final AbstractValueElement.NumberProps ThousandSeparatorsSymbol
-
RoundingType
public static final AbstractValueElement.NumberProps RoundingType
-
RoundingMode
public static final AbstractValueElement.NumberProps RoundingMode
-
booleanFormatOutputType
public static final AbstractValueElement.NumberProps booleanFormatOutputType
-
BooleanOutputType
public static final AbstractValueElement.NumberProps BooleanOutputType
-
-
Method Detail
-
values
public static AbstractValueElement.NumberProps[] 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 (AbstractValueElement.NumberProps c : AbstractValueElement.NumberProps.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractValueElement.NumberProps 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 namejava.lang.NullPointerException
- if the argument is null
-
-