Package com.inet.report
Enum AbstractValueElement.DateTimeProps
- java.lang.Object
-
- java.lang.Enum<AbstractValueElement.DateTimeProps>
-
- com.inet.report.AbstractValueElement.DateTimeProps
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AbstractValueElement.DateTimeProps>
- Enclosing class:
- AbstractValueElement
public static enum AbstractValueElement.DateTimeProps extends java.lang.Enum<AbstractValueElement.DateTimeProps>
FOR INTERNAL USE ONLY
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractValueElement.DateTimeProps
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AbstractValueElement.DateTimeProps[]
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.DateTimeProps DefaultAttribute
-
UseSystemDefaultFormat
public static final AbstractValueElement.DateTimeProps UseSystemDefaultFormat
-
DateWindowsDefaultType
public static final AbstractValueElement.DateTimeProps DateWindowsDefaultType
-
DateOrder
public static final AbstractValueElement.DateTimeProps DateOrder
-
YearType
public static final AbstractValueElement.DateTimeProps YearType
-
MonthType
public static final AbstractValueElement.DateTimeProps MonthType
-
DayType
public static final AbstractValueElement.DateTimeProps DayType
-
DayOfWeekType
public static final AbstractValueElement.DateTimeProps DayOfWeekType
-
DateEraType
public static final AbstractValueElement.DateTimeProps DateEraType
-
DateCalendarType
public static final AbstractValueElement.DateTimeProps DateCalendarType
-
DateZeroSeparator
public static final AbstractValueElement.DateTimeProps DateZeroSeparator
-
DateFirstSeparator
public static final AbstractValueElement.DateTimeProps DateFirstSeparator
-
DateSecondSeparator
public static final AbstractValueElement.DateTimeProps DateSecondSeparator
-
DateThirdSeparator
public static final AbstractValueElement.DateTimeProps DateThirdSeparator
-
DayOfWeekSeparator
public static final AbstractValueElement.DateTimeProps DayOfWeekSeparator
-
DayOfWeekPosition
public static final AbstractValueElement.DateTimeProps DayOfWeekPosition
-
DayOfWeekEnclosure
public static final AbstractValueElement.DateTimeProps DayOfWeekEnclosure
-
SystemDefaultTimeType
public static final AbstractValueElement.DateTimeProps SystemDefaultTimeType
-
TimeBase
public static final AbstractValueElement.DateTimeProps TimeBase
-
AmPmOrder
public static final AbstractValueElement.DateTimeProps AmPmOrder
-
HourType
public static final AbstractValueElement.DateTimeProps HourType
-
MinuteType
public static final AbstractValueElement.DateTimeProps MinuteType
-
SecondType
public static final AbstractValueElement.DateTimeProps SecondType
-
HourMinuteSeparator
public static final AbstractValueElement.DateTimeProps HourMinuteSeparator
-
MinuteSecondSeparator
public static final AbstractValueElement.DateTimeProps MinuteSecondSeparator
-
AmString
public static final AbstractValueElement.DateTimeProps AmString
-
PmString
public static final AbstractValueElement.DateTimeProps PmString
-
DateTimeOrder
public static final AbstractValueElement.DateTimeProps DateTimeOrder
-
DateTimeSeparator
public static final AbstractValueElement.DateTimeProps DateTimeSeparator
-
-
Method Detail
-
values
public static AbstractValueElement.DateTimeProps[] 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.DateTimeProps c : AbstractValueElement.DateTimeProps.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.DateTimeProps 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
-
-