Class GreaterOrEqualThanCriteria<T>

Type Parameters:
T - the generic type of the criteria's value.
All Implemented Interfaces:
Criteria, CriteriaLeaf<T>, org.refcodes.mixin.AliasAccessor, org.refcodes.mixin.KeyAccessor<String>, org.refcodes.mixin.KeyAccessor.KeyBuilder<String,org.refcodes.struct.Relation.RelationBuilder<String,T>>, org.refcodes.mixin.KeyAccessor.KeyMutator<String>, org.refcodes.mixin.KeyAccessor.KeyProperty<String>, org.refcodes.mixin.ValueAccessor<T>, org.refcodes.mixin.ValueAccessor.ValueBuilder<T,org.refcodes.struct.Relation.RelationBuilder<String,T>>, org.refcodes.mixin.ValueAccessor.ValueMutator<T>, org.refcodes.mixin.ValueAccessor.ValueProperty<T>, org.refcodes.schema.Schemable, org.refcodes.struct.Relation<String,T>, org.refcodes.struct.Relation.RelationBuilder<String,T>

public class GreaterOrEqualThanCriteria<T> extends AbstractCriteriaLeaf<T>
A CriteriaLeaf representing a GREATER OR EQUAL THAN expression.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.refcodes.mixin.AliasAccessor

    org.refcodes.mixin.AliasAccessor.AliasBuilder<B extends org.refcodes.mixin.AliasAccessor.AliasBuilder<B>>, org.refcodes.mixin.AliasAccessor.AliasMutator, org.refcodes.mixin.AliasAccessor.AliasProperty

    Nested classes/interfaces inherited from interface org.refcodes.mixin.KeyAccessor

    org.refcodes.mixin.KeyAccessor.KeyBuilder<K extends Object,B extends org.refcodes.mixin.KeyAccessor.KeyBuilder<K,B>>, org.refcodes.mixin.KeyAccessor.KeyMutator<K extends Object>, org.refcodes.mixin.KeyAccessor.KeyProperty<K extends Object>

    Nested classes/interfaces inherited from interface org.refcodes.struct.Relation

    org.refcodes.struct.Relation.RelationBuilder<K extends Object,V extends Object>

    Nested classes/interfaces inherited from interface org.refcodes.mixin.ValueAccessor

    org.refcodes.mixin.ValueAccessor.ValueBuilder<V extends Object,B extends org.refcodes.mixin.ValueAccessor.ValueBuilder<V,B>>, org.refcodes.mixin.ValueAccessor.ValueMutator<V extends Object>, org.refcodes.mixin.ValueAccessor.ValueProperty<V extends Object>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Empty constructor setting the name for the Criteria.
    Sets the key and the according value for the Criteria,.
  • Method Summary

    Modifier and Type
    Method
    Description

    Methods inherited from class org.refcodes.criteria.AbstractCriteriaLeaf

    getKey, getValue, setKey, setValue, toSchema

    Methods inherited from class org.refcodes.criteria.AbstractCriteria

    getAlias

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.refcodes.mixin.AliasAccessor

    getAlias

    Methods inherited from interface org.refcodes.criteria.CriteriaLeaf

    withKey, withValue

    Methods inherited from interface org.refcodes.mixin.KeyAccessor.KeyProperty

    letKey

    Methods inherited from interface org.refcodes.mixin.ValueAccessor

    getValueOr

    Methods inherited from interface org.refcodes.mixin.ValueAccessor.ValueProperty

    letValue
  • Field Details

  • Constructor Details

    • GreaterOrEqualThanCriteria

      public GreaterOrEqualThanCriteria()
      Empty constructor setting the name for the Criteria.
    • GreaterOrEqualThanCriteria

      public GreaterOrEqualThanCriteria(String aKey, T aValue)
      Sets the key and the according value for the Criteria,.
      Parameters:
      aKey - The key for which the Criteria is responsible.
      aValue - The value referenced by this Criteria.
  • Method Details