001package io.ebean.typequery; 002 003/** 004 * Integer property. 005 * 006 * @param <R> the root query bean type 007 */ 008public class PInteger<R> extends PBaseNumber<R,Integer> { 009 010 /** 011 * Construct with a property name and root instance. 012 * 013 * @param name property name 014 * @param root the root query bean instance 015 */ 016 public PInteger(String name, R root) { 017 super(name, root); 018 } 019 020 /** 021 * Construct with additional path prefix. 022 */ 023 public PInteger(String name, R root, String prefix) { 024 super(name, root, prefix); 025 } 026 027}