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