public static enum ParamInfo.Type extends Enum<ParamInfo.Type>
| Modifier and Type | Method and Description |
|---|---|
static ParamInfo.Type |
findType(String javaType)
Find the
ParamInfo.Type for passed java type. |
static ParamInfo.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParamInfo.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamInfo.Type BOOLEAN
public static final ParamInfo.Type INT
public static final ParamInfo.Type DOUBLE
public static final ParamInfo.Type STRING
public static final ParamInfo.Type ENUM
public static ParamInfo.Type[] values()
for (ParamInfo.Type c : ParamInfo.Type.values()) System.out.println(c);
public static ParamInfo.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static ParamInfo.Type findType(String javaType)
ParamInfo.Type for passed java type.javaType - FQN of a java type for which we want to find param
type.IllegalArgumentException - If passed typeName doesn't match any
type.Copyright © 2018 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All rights reserved.