Class Persons
- java.lang.Object
-
- de.ipk_gatersleben.bit.bi.edal.primary_data.metadata.UntypedData
-
- de.ipk_gatersleben.bit.bi.edal.primary_data.metadata.Persons
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UntypedData>
,java.lang.Iterable<Person>
,java.util.Collection<Person>
,java.util.Set<Person>
public class Persons extends UntypedData implements java.util.Set<Person>
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class de.ipk_gatersleben.bit.bi.edal.primary_data.metadata.UntypedData
ALL_RIGHTS_RESERVED, EMPTY, string
-
-
Constructor Summary
Constructors Constructor Description Persons()
-
Method Summary
Modifier and Type Method Description boolean
add(Person e)
boolean
addAll(java.util.Collection<? extends Person> c)
void
clear()
int
compareTo(UntypedData datatype)
boolean
contains(java.lang.Object o)
boolean
containsAll(java.util.Collection<?> c)
java.util.Set<Person>
getPersons()
boolean
isEmpty()
java.util.Iterator<Person>
iterator()
boolean
remove(java.lang.Object o)
boolean
removeAll(java.util.Collection<?> c)
boolean
retainAll(java.util.Collection<?> c)
void
setPersons(java.util.LinkedHashSet<Person> persons)
int
size()
java.lang.Object[]
toArray()
<T> T[]
toArray(T[] a)
java.lang.String
toHTML()
Return a String representation for the HTML pages of the HTTP-Listenerjava.lang.String
toString()
-
Methods inherited from class de.ipk_gatersleben.bit.bi.edal.primary_data.metadata.UntypedData
equals, getString, hashCode, setString
-
-
-
-
Method Detail
-
compareTo
public int compareTo(UntypedData datatype)
- Specified by:
compareTo
in interfacejava.lang.Comparable<UntypedData>
- Overrides:
compareTo
in classUntypedData
-
add
public boolean add(Person e)
-
addAll
public boolean addAll(java.util.Collection<? extends Person> c)
-
clear
public void clear()
-
contains
public boolean contains(java.lang.Object o)
-
containsAll
public boolean containsAll(java.util.Collection<?> c)
-
getPersons
public java.util.Set<Person> getPersons()
- Returns:
- the persons
-
isEmpty
public boolean isEmpty()
-
iterator
public java.util.Iterator<Person> iterator()
-
remove
public boolean remove(java.lang.Object o)
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
-
setPersons
public void setPersons(java.util.LinkedHashSet<Person> persons)
- Parameters:
persons
- the persons to set
-
size
public int size()
-
toArray
public java.lang.Object[] toArray()
-
toArray
public <T> T[] toArray(T[] a)
-
toHTML
public java.lang.String toHTML()
Return a String representation for the HTML pages of the HTTP-Listener- Overrides:
toHTML
in classUntypedData
- Returns:
- the HTML representation.
-
toString
public java.lang.String toString()
Description copied from class:UntypedData
- Overrides:
toString
in classUntypedData
-
-