public enum Null extends Enum<Null>
Enum Constant and Description |
---|
BIGDECIMAL |
BLOB |
BOOLEAN |
BYTE |
BYTEARRAY |
CLOB |
DATE |
DOUBLE |
FLOAT |
INTEGER |
LONG |
LONGVARBINARY |
LONGVARCHAR |
OBJECT |
OTHER |
SHORT |
SQLDATE |
SQLTIME |
SQLTIMESTAMP |
STRING |
TIME |
TIMESTAMP |
Modifier and Type | Method and Description |
---|---|
JdbcType |
getJdbcType() |
TypeHandler<?> |
getTypeHandler() |
static Null |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Null[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Null BOOLEAN
public static final Null BYTE
public static final Null SHORT
public static final Null INTEGER
public static final Null LONG
public static final Null FLOAT
public static final Null DOUBLE
public static final Null BIGDECIMAL
public static final Null STRING
public static final Null CLOB
public static final Null LONGVARCHAR
public static final Null BYTEARRAY
public static final Null BLOB
public static final Null LONGVARBINARY
public static final Null OBJECT
public static final Null OTHER
public static final Null TIMESTAMP
public static final Null DATE
public static final Null TIME
public static final Null SQLTIMESTAMP
public static final Null SQLDATE
public static final Null SQLTIME
public static Null[] values()
for (Null c : Null.values()) System.out.println(c);
public static Null 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 TypeHandler<?> getTypeHandler()
public JdbcType getJdbcType()
Copyright © 2010–2015 MyBatis.org. All rights reserved.