com.github.rutledgepaulv.qbuilders.properties.concrete.IntegerProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of q-builders Show documentation
Show all versions of q-builders Show documentation
A type-safe and database agnostic query building library.
The newest version!
/*
*
* * com.github.rutledgepaulv.qbuilders.properties.concrete.IntegerProperty
* * *
* * * Copyright (C) 2016 Paul Rutledge
* * *
* * * This software may be modified and distributed under the terms
* * * of the MIT license. See the LICENSE file for details.
* *
*
*/
package com.github.rutledgepaulv.qbuilders.properties.concrete;
import com.github.rutledgepaulv.qbuilders.builders.QBuilder;
import com.github.rutledgepaulv.qbuilders.properties.virtual.NumberProperty;
/**
* A property view for fields with {@link Integer} values.
*
* @param The type of the final builder.
*/
public interface IntegerProperty> extends NumberProperty {}