001package io.ebean.typequery;
002
003
004import java.time.Instant;
005
006/**
007 * Instant property.
008 *
009 * @param <R> the root query bean type
010 */
011public class PInstant<R> extends PBaseDate<R,Instant> {
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 PInstant(String name, R root) {
020    super(name, root);
021  }
022
023  /**
024   * Construct with additional path prefix.
025   */
026  public PInstant(String name, R root, String prefix) {
027    super(name, root, prefix);
028  }
029
030}