Enum FormatType
- java.lang.Object
-
- java.lang.Enum<FormatType>
-
- com.aspectran.core.context.rule.type.FormatType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FormatType>
public enum FormatType extends java.lang.Enum<FormatType>
Supported format types. Defines the format types as a result of converting objects to string representations.Created: 2008. 04. 25 AM 16:47:38
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FormatTyperesolve(ContentType contentType)Returns aFormatTypewith a value corresponding to the specifiedContentType.static FormatTyperesolve(java.lang.String alias)Returns aFormatTypewith a value represented by the specifiedString.java.lang.StringtoString()static FormatTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FormatType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final FormatType NONE
-
CUSTOM
public static final FormatType CUSTOM
-
TEXT
public static final FormatType TEXT
-
APON
public static final FormatType APON
-
JSON
public static final FormatType JSON
-
XML
public static final FormatType XML
-
XSL
public static final FormatType XSL
-
-
Method Detail
-
values
public static FormatType[] 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 (FormatType c : FormatType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FormatType 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<FormatType>
-
resolve
public static FormatType resolve(java.lang.String alias)
Returns aFormatTypewith a value represented by the specifiedString.- Parameters:
alias- the format type as aString- Returns:
- a
FormatType, may benull
-
resolve
public static FormatType resolve(ContentType contentType)
Returns aFormatTypewith a value corresponding to the specifiedContentType.- Parameters:
contentType- the content type as aContentType- Returns:
- a
FormatType, may benull
-
-