Uses of Interface
org.apache.cayenne.exp.property.Property
-
Packages that use Property Package Description org.apache.cayenne.access.translator.select org.apache.cayenne.exp Cayenne data expression classes.org.apache.cayenne.exp.property Property APIorg.apache.cayenne.query Defines standard queries supported by Cayenne and extension mechanism to create custom queries. -
-
Uses of Property in org.apache.cayenne.access.translator.select
Methods in org.apache.cayenne.access.translator.select that return types with arguments of type Property Modifier and Type Method Description Collection<Property<?>>FluentSelectWrapper. getColumns()Collection<Property<?>>SelectQueryWrapper. getColumns()Deprecated.Collection<Property<?>>TranslatableQueryWrapper. getColumns() -
Uses of Property in org.apache.cayenne.exp
Classes in org.apache.cayenne.exp that implement Property Modifier and Type Class Description classProperty<E>Deprecated.since 4.2 in favour of type-specific set of properties, seePropertyFactoryandorg.apache.cayenne.exp.propertypackage. -
Uses of Property in org.apache.cayenne.exp.property
Subinterfaces of Property in org.apache.cayenne.exp.property Modifier and Type Interface Description interfaceComparableProperty<E>Interface (or "Trait") that provides basic functionality for comparable properties.interfaceIdProperty<E>Base class for properties mapped to PKinterfacePathProperty<E>Property that represents path segment (relationship or embeddable).interfaceRelationshipProperty<E>Interface (or "Trait") that provides basic functionality for all types of relationships.Classes in org.apache.cayenne.exp.property that implement Property Modifier and Type Class Description classBaseIdProperty<E>Property that represents non-numeric PKclassBaseProperty<E>Property that represents generic attribute.classCollectionProperty<V extends Persistent,E extends Collection<V>>Base class forListPropertyandSetPropertyclassDateProperty<E>Property that represents date/time attribute.classEmbeddableProperty<E>Property that represents object attribute mapped onEmbeddableobject.classEntityProperty<E extends Persistent>Property that represents to-one relationships.classListProperty<V extends Persistent>Property that represents to-many relationship mapped onList.classMapProperty<K,V extends Persistent>Property that represents to-many relationship mapped onMap.classNumericIdProperty<E extends Number>Property that represents numeric PKclassNumericProperty<E extends Number>Property that represents attributes mapped on numeric typesclassSetProperty<V extends Persistent>Property that represents to-many relationship mapped onSet.classStringProperty<E extends CharSequence>Property that represents attributes mapped on string types -
Uses of Property in org.apache.cayenne.query
Fields in org.apache.cayenne.query with type parameters of type Property Modifier and Type Field Description protected Collection<Property<?>>SelectQuery. columnsDeprecated.Methods in org.apache.cayenne.query that return types with arguments of type Property Modifier and Type Method Description Collection<Property<?>>ColumnSelect. getColumns()Collection<Property<?>>FluentSelect. getColumns()Collection<Property<?>>SelectQuery. getColumns()Deprecated.Methods in org.apache.cayenne.query with parameters of type Property Modifier and Type Method Description protected <E> ColumnSelect<E>ColumnSelect. column(Property<E> property)<E> ColumnSelect<E>ObjectSelect. column(Property<E> property)Select one specific property.static ColumnSelect<Object[]>ObjectSelect. columnQuery(Class<?> entityType, Property<?>... columns)Creates a ColumnSelect that will fetch multiple columns of a givenObjEntitystatic <E> ColumnSelect<E>ObjectSelect. columnQuery(Class<?> entityType, Property<E> column)Creates a ColumnSelect that will fetch single property that can be resolved against a givenObjEntityclass.ColumnSelect<Object[]>ColumnSelect. columns(Property<?>... properties)Add properties to select.ColumnSelect<Object[]>ObjectSelect. columns(Property<?>... properties)Select only specific properties.voidSelectQuery. setColumns(Property<?>... columns)Deprecated.Method parameters in org.apache.cayenne.query with type arguments of type Property Modifier and Type Method Description ColumnSelect<Object[]>ColumnSelect. columns(Collection<Property<?>> properties)Add properties to select.voidSelectQuery. setColumns(Collection<Property<?>> columns)Deprecated.
-