Uses of Interface
com.speedment.jpastreamer.field.trait.HasColumnName

Packages that use HasColumnName
Package
Description
Fields expose handlers for accessing columns in generated classes and are located in this package.
Traits used in Speedment fields are located in this package.
  • Uses of HasColumnName in com.speedment.jpastreamer.field

    Modifier and Type
    Interface
    Description
    interface 
    BooleanField<ENTITY>
    A field that represents a primitive boolean value.
    interface 
    ByteField<ENTITY>
    A field that represents a primitive byte value.
    interface 
    CharField<ENTITY>
    A field that represents a primitive char value.
    interface 
    ComparableField<ENTITY,V extends Comparable<? super V>>
    A field that represents an object value that implements Comparable.
    interface 
    DoubleField<ENTITY>
    A field that represents a primitive double value.
    interface 
    EnumField<ENTITY,E extends Enum<E>>
    A field representing an Enum value in the entity.
    interface 
    Field<ENTITY>
    The base interface for all fields.
    interface 
    FloatField<ENTITY>
    A field that represents a primitive float value.
    interface 
    IntField<ENTITY>
    A field that represents a primitive int value.
    interface 
    LongField<ENTITY>
    A field that represents a primitive long value.
    interface 
    ReferenceField<ENTITY,V>
    A field that represents an object value.
    interface 
    ShortField<ENTITY>
    A field that represents a primitive short value.
    interface 
    StringField<ENTITY>
    A field that represents a string column.
  • Uses of HasColumnName in com.speedment.jpastreamer.field.trait

    Modifier and Type
    Interface
    Description
    interface 
    A representation of an Entity field that is of boolean type
    interface 
    A representation of an Entity field that is a primitive boolean type.
    interface 
    HasByteValue<ENTITY>
    A representation of an Entity field that is a primitive byte type.
    interface 
    HasCharValue<ENTITY>
    A representation of an Entity field that is a primitive char type.
    interface 
    HasComparableOperators<ENTITY,V extends Comparable<? super V>>
    A representation of an Entity field that is a reference type (e.g.
    interface 
    A representation of an Entity field that is a primitive double type.
    interface 
    A representation of an Entity field that is a primitive float type.
    interface 
    HasIntValue<ENTITY>
    A representation of an Entity field that is a primitive int type.
    interface 
    HasLongValue<ENTITY>
    A representation of an Entity field that is a primitive long type.
    interface 
    A representation of an Entity field that is a reference type (eg Integer and not int).
    interface 
    A representation of an Entity field that is a primitive short type.