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
           
PRIMITIVE_BYTE
           
PRIMITIVE_CHAR
           
PRIMITIVE_DOUBLE
           
PRIMITIVE_FLOAT
           
PRIMITIVE_INT
           
PRIMITIVE_LONG
           
PRIMITIVE_SHORT
           
WRAPPER_BOOLEAN
           
WRAPPER_BYTE
           
WRAPPER_CHAR
           
WRAPPER_DOUBLE
           
WRAPPER_FLOAT
           
WRAPPER_INT
           
WRAPPER_LONG
           
WRAPPER_SHORT
           
 
方法摘要
static PrimitiveWrapperArray find(Class<?> clazz)
           
static PrimitiveWrapperArray valueOf(String name)
          返回带有指定名称的该类型的枚举常量。
static PrimitiveWrapperArray[] values()
          按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。
 
从类 java.lang.Enum 继承的方法
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 
从接口 com.baidu.unbiz.fluentvalidator.able.Valuable 继承的方法
value
 
从接口 com.baidu.unbiz.fluentvalidator.able.TransformTo 继承的方法
transform
 

枚举常量详细信息

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.