- All Implemented Interfaces:
org.refcodes.mixin.KeyAccessor<String>,org.refcodes.mixin.ValueAccessor<Object>,Attribute,Relation<String,Object>
- Direct Known Subclasses:
AttributeImpl.AttributeBuilderImpl
Class describing a beans's attribute.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classImplementation of theProperty.PropertyBuilderinterface.Nested classes/interfaces inherited from class org.refcodes.struct.RelationImpl
RelationImpl.RelationBuilderImpl<K,V> Nested classes/interfaces inherited from interface org.refcodes.struct.Attribute
Attribute.AttributeBuilderNested 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
Relation.RelationBuilder<K,V> 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 inherited from class org.refcodes.struct.RelationImpl
_key, _value -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedInstantiates a new attribute impl.AttributeImpl(String aKey, Object aValue) Constructs a key-to-value property. -
Method Summary
Methods inherited from class org.refcodes.struct.RelationImpl
getKey, getValue, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.refcodes.mixin.KeyAccessor
getKeyMethods inherited from interface org.refcodes.mixin.ValueAccessor
getValue, getValueOr
-
Constructor Details
-
AttributeImpl
protected AttributeImpl()Instantiates a new attribute impl. -
AttributeImpl
Constructs a key-to-value property.- Parameters:
aKey- The key for the key-value property.aValue- The value for the key-value property.
-