Package org.apache.ibatis.jdbc
Enum Null
- java.lang.Object
- 
- java.lang.Enum<Null>
- 
- org.apache.ibatis.jdbc.Null
 
 
- 
- 
Method SummaryModifier and Type Method Description JdbcTypegetJdbcType()TypeHandler<?>getTypeHandler()static NullvalueOf(java.lang.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.
 
- 
- 
- 
Enum Constant Detail- 
BOOLEANpublic static final Null BOOLEAN 
 - 
BYTEpublic static final Null BYTE 
 - 
SHORTpublic static final Null SHORT 
 - 
INTEGERpublic static final Null INTEGER 
 - 
LONGpublic static final Null LONG 
 - 
FLOATpublic static final Null FLOAT 
 - 
DOUBLEpublic static final Null DOUBLE 
 - 
BIGDECIMALpublic static final Null BIGDECIMAL 
 - 
STRINGpublic static final Null STRING 
 - 
CLOBpublic static final Null CLOB 
 - 
LONGVARCHARpublic static final Null LONGVARCHAR 
 - 
BYTEARRAYpublic static final Null BYTEARRAY 
 - 
BLOBpublic static final Null BLOB 
 - 
LONGVARBINARYpublic static final Null LONGVARBINARY 
 - 
OBJECTpublic static final Null OBJECT 
 - 
OTHERpublic static final Null OTHER 
 - 
TIMESTAMPpublic static final Null TIMESTAMP 
 - 
DATEpublic static final Null DATE 
 - 
TIMEpublic static final Null TIME 
 - 
SQLTIMESTAMPpublic static final Null SQLTIMESTAMP 
 - 
SQLDATEpublic static final Null SQLDATE 
 - 
SQLTIMEpublic static final Null SQLTIME 
 
- 
 - 
Method Detail- 
valuespublic static Null[] values() Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Null valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getTypeHandlerpublic TypeHandler<?> getTypeHandler() 
 - 
getJdbcTypepublic JdbcType getJdbcType() 
 
- 
 
-