Uses of Interface
com.speedment.jpastreamer.field.comparator.FieldComparator
Packages that use FieldComparator
Package
Description
Fields expose handlers for accessing columns in generated classes and are
located in this package.
Comparators provided by the Runtime Field module.
Traits used in Speedment fields are located in this package.
-
Uses of FieldComparator in com.speedment.jpastreamer.field
Subinterfaces of FieldComparator in com.speedment.jpastreamer.fieldModifier and TypeInterfaceDescriptioninterfaceBooleanField<ENTITY>A field that represents a primitivebooleanvalue.interfaceByteField<ENTITY>A field that represents a primitivebytevalue.interfaceCharField<ENTITY>A field that represents a primitivecharvalue.interfaceDoubleField<ENTITY>A field that represents a primitivedoublevalue.interfaceFloatField<ENTITY>A field that represents a primitivefloatvalue.interfaceIntField<ENTITY>A field that represents a primitiveintvalue.interfaceLongField<ENTITY>A field that represents a primitivelongvalue.interfaceShortField<ENTITY>A field that represents a primitiveshortvalue. -
Uses of FieldComparator in com.speedment.jpastreamer.field.comparator
Subinterfaces of FieldComparator in com.speedment.jpastreamer.field.comparatorModifier and TypeInterfaceDescriptioninterfaceBooleanFieldComparator<ENTITY>AFieldComparatorthat compares values of aBooleanField.interfaceByteFieldComparator<ENTITY>AFieldComparatorthat compares values of aByteField.interfaceCharFieldComparator<ENTITY>AFieldComparatorthat compares values of aCharField.interfaceDoubleFieldComparator<ENTITY>AFieldComparatorthat compares values of aDoubleField.interfaceFloatFieldComparator<ENTITY>AFieldComparatorthat compares values of aFloatField.interfaceIntFieldComparator<ENTITY>AFieldComparatorthat compares values of aIntField.interfaceLongFieldComparator<ENTITY>AFieldComparatorthat compares values of aLongField.interfaceReferenceFieldComparator<ENTITY,V extends Comparable<? super V>> AFieldComparatorthat compares values of aComparableField.interfaceShortFieldComparator<ENTITY>AFieldComparatorthat compares values of aShortField.Methods in com.speedment.jpastreamer.field.comparator that return FieldComparatorModifier and TypeMethodDescriptionFieldComparator.reversed()Returns a newFieldComparatorthat order entities in the opposite orders compared to this comparator.Methods in com.speedment.jpastreamer.field.comparator that return types with arguments of type FieldComparatorModifier and TypeMethodDescriptionStream<FieldComparator<? super ENTITY>>CombinedComparator.stream()Returns the comparators ordered so that the first comparator is the most significant, and if that evaluates to0, continue on to the next one. -
Uses of FieldComparator in com.speedment.jpastreamer.field.trait
Methods in com.speedment.jpastreamer.field.trait that return FieldComparatorModifier and TypeMethodDescriptionHasComparableOperators.comparator()Returns aComparatorthat will compare to this field using this fields natural order, null fields are sorted last.HasComparableOperators.comparatorNullFieldsFirst()Returns aComparatorthat will compare to this field using this fields natural order, null fields are sorted first.