Package org.joda.convert.factory
Enum CharObjectArrayStringConverterFactory.CharecterArrayStringConverter
- java.lang.Object
-
- java.lang.Enum<CharObjectArrayStringConverterFactory.CharecterArrayStringConverter>
-
- org.joda.convert.factory.CharObjectArrayStringConverterFactory.CharecterArrayStringConverter
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CharObjectArrayStringConverterFactory.CharecterArrayStringConverter>
,FromStringConverter<java.lang.Character[]>
,StringConverter<java.lang.Character[]>
,ToStringConverter<java.lang.Character[]>
,TypedStringConverter<java.lang.Character[]>
- Enclosing class:
- CharObjectArrayStringConverterFactory
static enum CharObjectArrayStringConverterFactory.CharecterArrayStringConverter extends java.lang.Enum<CharObjectArrayStringConverterFactory.CharecterArrayStringConverter> implements TypedStringConverter<java.lang.Character[]>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.Character[]
EMPTY
-
Constructor Summary
Constructors Modifier Constructor Description private
CharecterArrayStringConverter()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CharObjectArrayStringConverterFactory.CharecterArrayStringConverter
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CharObjectArrayStringConverterFactory.CharecterArrayStringConverter[]
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 interface org.joda.convert.FromStringConverter
convertFromString
-
Methods inherited from interface org.joda.convert.ToStringConverter
convertToString
-
Methods inherited from interface org.joda.convert.TypedStringConverter
getEffectiveType
-
-
-
-
Enum Constant Detail
-
INSTANCE
public static final CharObjectArrayStringConverterFactory.CharecterArrayStringConverter INSTANCE
-
-
Method Detail
-
values
public static CharObjectArrayStringConverterFactory.CharecterArrayStringConverter[] 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 (CharObjectArrayStringConverterFactory.CharecterArrayStringConverter c : CharObjectArrayStringConverterFactory.CharecterArrayStringConverter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CharObjectArrayStringConverterFactory.CharecterArrayStringConverter 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
-
-