Skip navigation links
A C D E G H I K M O P R S T V W _ 

A

add(E) - Method in interface org.refcodes.collection.Elements.MutableElements

C

clear() - Method in interface org.refcodes.collection.Clearable
Clears all elements contained in the implementing instance.
clear() - Method in class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 
Clearable - Interface in org.refcodes.collection
Provides a mixin to clear a collection from all its contained elements.
CollectionUtility - Class in org.refcodes.collection
 
Containable - Interface in org.refcodes.collection
A Containable is the base functionality provided container (collection).
Container<E> - Interface in org.refcodes.collection
Basic functionality being provided by any Container (collection) style class.
Container.ClearableContainer<E> - Interface in org.refcodes.collection
Extends the Container interface with Clearable functionality (as of Clearable.clear()).
Container.MutableContainer<E> - Interface in org.refcodes.collection
Extends the Container with mutable (writable) functionality, especially by enabling the Iterator.remove() method in the Iterator provided via Elements.iterator().
contains(E) - Method in interface org.refcodes.collection.Elements
Tests whether the specified object is an element of the Elements (collection).
containsKey(String) - Method in class org.refcodes.collection.impls.PropertiesImpl
 
containsKey(K) - Method in interface org.refcodes.collection.Keys
Tests whether there is an element with the given key.

D

Dictionary<K,V> - Interface in org.refcodes.collection
Basic functionality being provided by any Dictionary (map) style class.
Dictionary.ClearableDictionary<K,V> - Interface in org.refcodes.collection
Extends the Dictionary interface with ClearableKeys functionality (as of Clearable.clear()).
Dictionary.MutableDictionary<K,V> - Interface in org.refcodes.collection
Extends the Dictionary with mutable (writable) functionality, especially by providing #add(Object) and #remove(Object) methods.
Dictionary.MutableDictionary.DictionaryBuilder<K,V,T extends org.refcodes.structure.Relation<K,V>,B extends Dictionary.MutableDictionary.DictionaryBuilder<K,V,T,B>> - Interface in org.refcodes.collection
Provides a builder method for a Relation property returning the builder for applying multiple build operations.

E

Elements<E> - Interface in org.refcodes.collection
Basic functionality being provided by any Elements (collection) style class.
Elements.ClearableElements<E> - Interface in org.refcodes.collection
Extends the Elements interface with Clearable functionality (as of Clearable.clear()).
Elements.MutableElements<E> - Interface in org.refcodes.collection
Extends the Elements with mutable (writable) functionality, especially by enabling the Iterator.remove() method in the Iterator provided via Elements.MutableElements.iterator() and by providing the Elements.MutableElements.add(Object) and the Elements.MutableElements.remove(Object) methods.
equals(Object) - Method in class org.refcodes.collection.impls.PropertiesImpl
 
equals(Object) - Method in class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 
equals(Object) - Method in class org.refcodes.collection.impls.PropertiesImpl.PropertiesBuilderImpl
 

G

get(String) - Method in class org.refcodes.collection.impls.PropertiesImpl
 
get(K) - Method in interface org.refcodes.collection.Keys
Retrieves the element assigned to the given key.
getProperties() - Method in interface org.refcodes.collection.PropertiesAccessor
Retrieves the properties from the properties property.

H

hashCode() - Method in class org.refcodes.collection.impls.PropertiesImpl
 
hashCode() - Method in class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 
hashCode() - Method in class org.refcodes.collection.impls.PropertiesImpl.PropertiesBuilderImpl
 

I

isEmpty() - Method in interface org.refcodes.collection.Containable
Tests whether the accumulation is empty or not.
isEmpty() - Method in class org.refcodes.collection.impls.PropertiesImpl
 
iterator() - Method in interface org.refcodes.collection.Elements
Returns an Iterator instance of all the data elements contained in the Elements (collection). ------------------------------------------------------------------------- ATTENTION: The Iterator.remove() method may be disabled in the returned Iterator instance as the Elements is supposed to be read-only.
iterator() - Method in interface org.refcodes.collection.Elements.MutableElements
Returns an Iterator instance of all the data elements contained in the container (collection). --------------------------------------------------------------------- ATTENTION: The Iterator.remove() method is enabled in the returned Iterator instance as the Elements.MutableElements is possibly readable and writable.

K

Keys<K,V> - Interface in org.refcodes.collection
This interface provides functionality for working with keys.
Keys.ClearableKeys<K,V> - Interface in org.refcodes.collection
Extends the Keys interface with Clearable functionality (as of Clearable.clear()).
Keys.MutableKeys<K,V> - Interface in org.refcodes.collection
Adds mutable functionality to the Keys interface.
keySet() - Method in class org.refcodes.collection.impls.PropertiesImpl
 
keySet() - Method in interface org.refcodes.collection.Keys
Retrieves a collection containing all the keys found in the elements of this collection.

M

MutablePropertiesImpl() - Constructor for class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 
MutablePropertiesImpl(Map<?, ?>) - Constructor for class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 
MutablePropertiesImpl(Properties) - Constructor for class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 

O

org.refcodes.collection - package org.refcodes.collection
 
org.refcodes.collection.impls - package org.refcodes.collection.impls
 

P

Properties - Interface in org.refcodes.collection
The Properties are a specialization of the Dictionary.
Properties.ClearableProperties - Interface in org.refcodes.collection
 
Properties.MutableProperties - Interface in org.refcodes.collection
 
Properties.PropertiesBuilder - Interface in org.refcodes.collection
 
PropertiesAccessor - Interface in org.refcodes.collection
Provides an accessor for a properties property.
PropertiesAccessor.PropertiesBuilder<B extends org.refcodes.mixin.NameAccessor.NameBuilder<B>> - Interface in org.refcodes.collection
Provides a builder method for a properties property returning the builder for applying multiple build operations.
PropertiesAccessor.PropertiesMutator - Interface in org.refcodes.collection
Provides an mutator for a properties property.
PropertiesAccessor.PropertiesProperty - Interface in org.refcodes.collection
Provides a properties property.
PropertiesBuilderImpl() - Constructor for class org.refcodes.collection.impls.PropertiesImpl.PropertiesBuilderImpl
 
PropertiesImpl - Class in org.refcodes.collection.impls
 
PropertiesImpl() - Constructor for class org.refcodes.collection.impls.PropertiesImpl
 
PropertiesImpl(Properties) - Constructor for class org.refcodes.collection.impls.PropertiesImpl
 
PropertiesImpl(Map<?, ?>) - Constructor for class org.refcodes.collection.impls.PropertiesImpl
 
PropertiesImpl.MutablePropertiesImpl - Class in org.refcodes.collection.impls
 
PropertiesImpl.PropertiesBuilderImpl - Class in org.refcodes.collection.impls
 
put(K, V) - Method in interface org.refcodes.collection.Dictionary.MutableDictionary
Adds the given element related to the given key.
put(Relation<K, V>) - Method in interface org.refcodes.collection.Dictionary.MutableDictionary
Adds the given element related to the given key.
put(String, String) - Method in class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 
put(Relation<String, String>) - Method in class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 
put(Property) - Method in class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 
put(Property) - Method in interface org.refcodes.collection.Properties.MutableProperties
Puts the key/value-pair from the provided Property.
putAll(Map<String, String>) - Method in interface org.refcodes.collection.Properties.MutableProperties
This method inserts all elements (key/value-pairs) found in the provided Map instances of interoperability reasons.
putAll(Properties) - Method in interface org.refcodes.collection.Properties.MutableProperties
This method inserts all elements (key/value-pairs) found in the provided Properties instances of interoperability reasons.
putAll(Properties) - Method in interface org.refcodes.collection.Properties.MutableProperties
This method inserts all elements (key/value-pairs) found in the provided Properties instances of interoperability reasons.

R

remove(E) - Method in interface org.refcodes.collection.Elements.MutableElements
removeByKey(String) - Method in class org.refcodes.collection.impls.PropertiesImpl.MutablePropertiesImpl
 
removeByKey(K) - Method in interface org.refcodes.collection.Keys.MutableKeys
Removes an element identified by the given key.

S

setProperties(Properties) - Method in interface org.refcodes.collection.PropertiesAccessor.PropertiesMutator
Sets the properties for the properties property.
size() - Method in interface org.refcodes.collection.Containable
Returns the number of data elements contained in the collection.
size() - Method in class org.refcodes.collection.impls.PropertiesImpl
 

T

toArrayList(Iterator<? extends E>) - Static method in class org.refcodes.collection.CollectionUtility
Creates a new list and copies the content of the iterator into the list.
toMap() - Method in interface org.refcodes.collection.Properties
This method creates a Map instance from this Properties instance's elements (key/value-pairs) as of interoperability reasons.
toMaxLength(T[]...) - Static method in class org.refcodes.collection.CollectionUtility
Returns the max length of the arrays passed to this method.
toMaxLength(Collection<?>...) - Static method in class org.refcodes.collection.CollectionUtility
Returns the max size of the collections passed to this method.
toProperties() - Method in interface org.refcodes.collection.Properties
This method creates a Properties instance from this Properties instance's elements (key/value-pairs) as of interoperability reasons.

V

values() - Method in class org.refcodes.collection.impls.PropertiesImpl
 
values() - Method in interface org.refcodes.collection.Keys
Returns a Collection view of the values related to the contained keys.

W

withProperties(Properties) - Method in interface org.refcodes.collection.PropertiesAccessor.PropertiesBuilder
Sets the properties for the properties property.
withPut(K, V) - Method in interface org.refcodes.collection.Dictionary.MutableDictionary.DictionaryBuilder
 
withPut(T) - Method in interface org.refcodes.collection.Dictionary.MutableDictionary.DictionaryBuilder
 
withPut(String, String) - Method in class org.refcodes.collection.impls.PropertiesImpl.PropertiesBuilderImpl
 
withPut(Property) - Method in class org.refcodes.collection.impls.PropertiesImpl.PropertiesBuilderImpl
 
withPut(String, String) - Method in interface org.refcodes.collection.Properties.PropertiesBuilder
 
withPut(Property) - Method in interface org.refcodes.collection.Properties.PropertiesBuilder
 

_

_properties - Variable in class org.refcodes.collection.impls.PropertiesImpl
 
A C D E G H I K M O P R S T V W _ 
Skip navigation links

Copyright © 2017. All rights reserved.