|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IParameter.ParameterType>
gr.uoa.di.madgik.commons.configuration.parameter.IParameter.ParameterType
public static enum IParameter.ParameterType
The type of parameters tat can be declared and instnatiated. The primitive types are distinguished in bothe their boxed an unboxed representations as the java platform treats them differntly and a boxed value cannot be used in a method that needs an unboxed value and vise-versa
Enum Constant Summary | |
---|---|
BooleanClass
Boolean boxed type |
|
BooleanPrimitive
Boolean unboxed type |
|
ByteClass
Byte boxed type |
|
BytePrimitive
Byte unboxed type |
|
DoubleClass
Double boxed type |
|
DoublePrimitive
Double unboxed type |
|
FloatClass
Float boxed type |
|
FloatPrimitive
Float unboxed type |
|
IntegerClass
Integer boxed type |
|
IntegerPrimitive
Integer unboxed type |
|
LongClass
Long boxed type |
|
LongPrimitive
Long unboxed type |
|
Object
Object type |
|
ShortClass
Short boxed type |
|
ShortPrimitive
Short unboxed type |
|
String
String type |
|
XML
XML type |
Method Summary | |
---|---|
static IParameter.ParameterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static IParameter.ParameterType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final IParameter.ParameterType IntegerClass
public static final IParameter.ParameterType IntegerPrimitive
public static final IParameter.ParameterType FloatClass
public static final IParameter.ParameterType FloatPrimitive
public static final IParameter.ParameterType DoubleClass
public static final IParameter.ParameterType DoublePrimitive
public static final IParameter.ParameterType ShortClass
public static final IParameter.ParameterType ShortPrimitive
public static final IParameter.ParameterType LongClass
public static final IParameter.ParameterType LongPrimitive
public static final IParameter.ParameterType BooleanClass
public static final IParameter.ParameterType BooleanPrimitive
public static final IParameter.ParameterType ByteClass
public static final IParameter.ParameterType BytePrimitive
public static final IParameter.ParameterType String
public static final IParameter.ParameterType XML
public static final IParameter.ParameterType Object
Method Detail |
---|
public static IParameter.ParameterType[] values()
for (IParameter.ParameterType c : IParameter.ParameterType.values()) System.out.println(c);
public static IParameter.ParameterType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |