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