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