Uses of Class
io.ebean.typequery.TQProperty

  • Uses of TQProperty in io.ebean.typequery

    Modifier and Type
    Class
    Description
    final class 
    PArray<R,E>
    Array property with E as the element type.
    class 
    Base property for all comparable types.
    class 
    PBaseDate<R,T extends Comparable>
    Base property for date and date time types.
    class 
    PBaseNumber<R,T extends Comparable>
    Base property for number types.
    class 
    Base for property types that store as String Varchar types.
    class 
    PBaseTime<R,T extends Comparable>
    Base property for time types.
    class 
    Base property for types that primarily have equal to.
    final class 
    BigDecimal property.
    final class 
    BigInteger property.
    final class 
    Boolean property.
    final class 
    Byte array property (byte[]).
    final class 
    Calendar property.
    final class 
    Cidr property.
    final class 
    Class property.
    final class 
    Currency property.
    final class 
    DayOfWeek property.
    final class 
    Double property.
    final class 
    Duration property.
    final class 
    PEnum<R,E>
    Enum property.
    final class 
    File property.
    final class 
    Float property.
    final class 
    Inet property.
    final class 
    InetAddress property.
    final class 
    Instant property.
    final class 
    Integer property.
    final class 
    Joda DateMidnight property.
    final class 
    Joda DateTime property.
    final class 
    Joda LocalDate property.
    final class 
    Joda LocalDateTime property.
    final class 
    Joda LocalTime property.
    final class 
    JSON document type.
    final class 
    LocalDate property.
    final class 
    LocalDateTime property.
    final class 
    Locale property.
    final class 
    LocalTime property.
    final class 
    Long property.
    final class 
    LocalDateTime property.
    final class 
    MonthDay property.
    final class 
    OffsetDateTime property.
    final class 
    OffsetTime property.
    final class 
    PScalar<R,D>
    Property for classes that are serialized/deserialized by ScalarType/AttributeConverter.
    final class 
    Property for classes that are serialized/deserialized by ScalarType/AttributeConverter.
    final class 
    Short property.
    final class 
    Java sql Date property.
    final class 
    String property.
    final class 
    Time property.
    final class 
    Property for java sql Timestamp.
    final class 
    TimeZone property.
    final class 
    PUri<R>
    URI property.
    final class 
    PUrl<R>
    URL property.
    final class 
    Java util Date property.
    final class 
    UUID property.
    final class 
    Year property.
    final class 
    YearMonth property.
    final class 
    ZonedDateTime property.
    final class 
    ZoneId property.
    final class 
    ZoneOffset property.
    class 
    TQAssoc<T,R>
    Base type for associated beans.
    class 
    TQAssocBean<T,R,QB>
    Base type for associated beans that are not embeddable.
    class 
    Base scalar property.
    Methods in io.ebean.typequery with parameters of type TQProperty
    Modifier and Type
    Method
    Description
    IQueryBean.distinctOn(TQProperty<R,?>... properties)
    Set DISTINCT ON properties.
    final R
    QueryBean.distinctOn(TQProperty<R,?>... properties)
     
    final R
    TQAssocBean.fetch(io.ebean.FetchConfig config, TQProperty<QB,?>... properties)
    Fetch this association with config for the type of fetch and the specified properties.
    final R
    TQAssocBean.fetch(TQProperty<QB,?>... properties)
    Eagerly fetch this association loading the specified properties.
    final R
    TQAssocBean.fetchCache(TQProperty<QB,?>... properties)
    Eagerly fetch this association using L2 cache.
    final R
    TQAssocBean.fetchLazy(TQProperty<QB,?>... properties)
    Use lazy loading for this association loading the specified properties.
    final R
    TQAssocBean.fetchQuery(TQProperty<QB,?>... properties)
    Eagerly fetch this association using a 'query join' loading the specified properties.
    IQueryBean.select(TQProperty<R,?>... properties)
    Specify the properties to be loaded on the 'main' root level entity bean.
    final R
    QueryBean.select(TQProperty<R,?>... properties)