All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.j256.ormlite.field.types.IntType Maven / Gradle / Ivy

package com.j256.ormlite.field.types;

import com.j256.ormlite.field.SqlType;

/**
 * Type that persists a integer primitive.
 * 
 * @author graywatson
 */
public class IntType extends IntegerObjectType {

	private static final IntType singleTon = new IntType();

	public static IntType getSingleton() {
		return singleTon;
	}

	private IntType() {
		super(SqlType.INTEGER, new Class[] { int.class });
	}

	/**
	 * Here for others to subclass.
	 */
	protected IntType(SqlType sqlType, Class[] classes) {
		super(sqlType, classes);
	}

	@Override
	public boolean isPrimitive() {
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy