com.baidu.unbiz.fluentvalidator.util
枚举 PrimitiveWrapperArray
java.lang.Object
java.lang.Enum<PrimitiveWrapperArray>
com.baidu.unbiz.fluentvalidator.util.PrimitiveWrapperArray
- 所有已实现的接口:
- TransformTo<Class<?>>, Valuable<Class<?>>, Serializable, Comparable<PrimitiveWrapperArray>
public enum PrimitiveWrapperArray
- extends Enum<PrimitiveWrapperArray>
- implements Valuable<Class<?>>, TransformTo<Class<?>>
- 版本:
- create on 2014年9月22日 下午11:17:44
- 作者:
- xuc
PRIMITIVE_BOOLEAN
public static final PrimitiveWrapperArray PRIMITIVE_BOOLEAN
PRIMITIVE_BYTE
public static final PrimitiveWrapperArray PRIMITIVE_BYTE
PRIMITIVE_CHAR
public static final PrimitiveWrapperArray PRIMITIVE_CHAR
PRIMITIVE_SHORT
public static final PrimitiveWrapperArray PRIMITIVE_SHORT
PRIMITIVE_INT
public static final PrimitiveWrapperArray PRIMITIVE_INT
PRIMITIVE_LONG
public static final PrimitiveWrapperArray PRIMITIVE_LONG
PRIMITIVE_FLOAT
public static final PrimitiveWrapperArray PRIMITIVE_FLOAT
PRIMITIVE_DOUBLE
public static final PrimitiveWrapperArray PRIMITIVE_DOUBLE
WRAPPER_BOOLEAN
public static final PrimitiveWrapperArray WRAPPER_BOOLEAN
WRAPPER_BYTE
public static final PrimitiveWrapperArray WRAPPER_BYTE
WRAPPER_CHAR
public static final PrimitiveWrapperArray WRAPPER_CHAR
WRAPPER_SHORT
public static final PrimitiveWrapperArray WRAPPER_SHORT
WRAPPER_INT
public static final PrimitiveWrapperArray WRAPPER_INT
WRAPPER_LONG
public static final PrimitiveWrapperArray WRAPPER_LONG
WRAPPER_FLOAT
public static final PrimitiveWrapperArray WRAPPER_FLOAT
WRAPPER_DOUBLE
public static final PrimitiveWrapperArray WRAPPER_DOUBLE
values
public static PrimitiveWrapperArray[] values()
- 按照声明该枚举类型的常量的顺序,返回
包含这些常量的数组。该方法可用于迭代
常量,如下所示:
for (PrimitiveWrapperArray c : PrimitiveWrapperArray.values())
System.out.println(c);
valueOf
public static PrimitiveWrapperArray valueOf(String name)
- 返回带有指定名称的该类型的枚举常量。
字符串必须与用于声明该类型的枚举常量的
标识符完全匹配。(不允许有多余
的空格。)
- 参数:
name - 要返回的枚举常量的名称。
- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
如果该枚举类型没有带有指定名称的常量, - 则抛出 IllegalArgumentException
find
public static PrimitiveWrapperArray find(Class<?> clazz)
Copyright © 2015–2016 neoremind. All rights reserved.