Java Code Examples for com.j256.ormlite.field.SqlType#CHAR

The following examples show how to use com.j256.ormlite.field.SqlType#CHAR . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CharacterObjectType.java    From ormlite-core with ISC License 4 votes vote down vote up
private CharacterObjectType() {
	super(SqlType.CHAR, new Class<?>[] { Character.class });
}
 
Example 2
Source File: CharType.java    From ormlite-core with ISC License 4 votes vote down vote up
private CharType() {
	super(SqlType.CHAR, new Class<?>[] { char.class });
}
 
Example 3
Source File: BooleanCharType.java    From ormlite-core with ISC License 4 votes vote down vote up
public BooleanCharType() {
	super(SqlType.CHAR);
}
 
Example 4
Source File: CharTypeTest.java    From ormlite-core with ISC License 4 votes vote down vote up
@Test
public void testCoverage() {
	new CharType(SqlType.CHAR, new Class[0]);
}