Interface Property.PropertyBuilder

  • All Superinterfaces:
    org.refcodes.mixin.KeyAccessor<java.lang.String>, org.refcodes.mixin.KeyAccessor.KeyBuilder<java.lang.String,java.lang.String>, org.refcodes.mixin.KeyAccessor.KeyMutator<java.lang.String>, org.refcodes.mixin.KeyAccessor.KeyProperty<java.lang.String>, Property, Relation<java.lang.String,java.lang.String>, Relation.RelationBuilder<java.lang.String,java.lang.String>, org.refcodes.mixin.ValueAccessor<java.lang.String>, org.refcodes.mixin.ValueAccessor.ValueBuilder<java.lang.String,java.lang.String>, org.refcodes.mixin.ValueAccessor.ValueMutator<java.lang.String>, org.refcodes.mixin.ValueAccessor.ValueProperty<java.lang.String>
    All Known Implementing Classes:
    PropertyImpl.PropertyBuilderImpl
    Enclosing interface:
    Property


    public static interface Property.PropertyBuilder
    extends Property, Relation.RelationBuilder<java.lang.String,java.lang.String>
    Adds builder functionality to a Property.
    • Nested Class Summary

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

        org.refcodes.mixin.KeyAccessor.KeyBuilder<K extends java.lang.Object,B extends org.refcodes.mixin.KeyAccessor.KeyBuilder<K,B>>, org.refcodes.mixin.KeyAccessor.KeyMutator<K extends java.lang.Object>, org.refcodes.mixin.KeyAccessor.KeyProperty<K extends java.lang.Object>
      • Nested classes/interfaces inherited from interface org.refcodes.mixin.ValueAccessor

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

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default Property.PropertyBuilder withKey​(java.lang.String aKey)
      With key.
      default Property.PropertyBuilder withValue​(java.lang.String aValue)
      With value.
      • Methods inherited from interface org.refcodes.mixin.KeyAccessor

        getKey
      • Methods inherited from interface org.refcodes.mixin.KeyAccessor.KeyMutator

        setKey
      • Methods inherited from interface org.refcodes.mixin.ValueAccessor

        getValue
      • Methods inherited from interface org.refcodes.mixin.ValueAccessor.ValueMutator

        setValue
    • Method Detail

      • withKey

        default Property.PropertyBuilder withKey​(java.lang.String aKey)
        With key.
        Specified by:
        withKey in interface org.refcodes.mixin.KeyAccessor.KeyBuilder<java.lang.String,java.lang.String>
        Specified by:
        withKey in interface Relation.RelationBuilder<java.lang.String,java.lang.String>
        Parameters:
        aKey - the key
        Returns:
        the property builder
      • withValue

        default Property.PropertyBuilder withValue​(java.lang.String aValue)
        With value.
        Specified by:
        withValue in interface Relation.RelationBuilder<java.lang.String,java.lang.String>
        Specified by:
        withValue in interface org.refcodes.mixin.ValueAccessor.ValueBuilder<java.lang.String,java.lang.String>
        Parameters:
        aValue - the value
        Returns:
        the property builder