Enum Class ClassType

java.lang.Object
java.lang.Enum<ClassType>
org.cattleframework.utils.reflect.constant.ClassType
所有已实现的接口:
Serializable, Comparable<ClassType>, Constable

public enum ClassType extends Enum<ClassType>
类的类型
作者:
orange
  • 枚举常量详细资料

    • Array

      public static final ClassType Array
      数组
    • Enum

      public static final ClassType Enum
      枚举
    • Long

      public static final ClassType Long
      长整型
    • Int

      public static final ClassType Int
      整型
    • Double

      public static final ClassType Double
      双精度
    • String

      public static final ClassType String
      字符串
    • Boolean

      public static final ClassType Boolean
      布尔值
    • Date

      public static final ClassType Date
      日期
    • SqlDate

      public static final ClassType SqlDate
      Sql日期
    • Timestamp

      public static final ClassType Timestamp
      时间戳
    • Time

      public static final ClassType Time
      时间
    • List

      public static final ClassType List
      List
    • Map

      public static final ClassType Map
      Map
    • Byte

      public static final ClassType Byte
      字节
    • Char

      public static final ClassType Char
      字符
    • Short

      public static final ClassType Short
      短整型
    • Object

      public static final ClassType Object
      对象
    • Class

      public static final ClassType Class
    • ClassObject

      public static final ClassType ClassObject
      类对象
    • BigDecimal

      public static final ClassType BigDecimal
      Big Decimal
    • BigInteger

      public static final ClassType BigInteger
      Big Integer
    • Null

      public static final ClassType Null
      空值
  • 方法详细资料

    • values

      public static ClassType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      返回:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ClassType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值