Class PropertyList<T>
- java.lang.Object
-
- org.apache.syncope.client.console.commons.PropertyList<T>
-
-
Constructor Summary
Constructors Constructor Description PropertyList()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
add(int index, String element)
boolean
add(String item)
boolean
addAll(int index, Collection<? extends String> c)
boolean
addAll(Collection<? extends String> c)
void
clear()
boolean
contains(Object o)
boolean
containsAll(Collection<?> c)
String
get(int index)
static List<String>
getEnumValuesAsList(String enumerationValues)
static String
getEnumValuesAsString(List<String> enumerationValues)
abstract String
getValues()
int
indexOf(Object o)
boolean
isEmpty()
Iterator<String>
iterator()
int
lastIndexOf(Object o)
ListIterator<String>
listIterator()
ListIterator<String>
listIterator(int index)
String
remove(int index)
boolean
remove(Object o)
boolean
removeAll(Collection<?> c)
boolean
retainAll(Collection<?> c)
String
set(int index, String element)
abstract void
setValues(List<String> list)
int
size()
List<String>
subList(int fromIndex, int toIndex)
Object[]
toArray()
<T> T[]
toArray(T[] a)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
equals, hashCode, replaceAll, sort, spliterator
-
-
-
-
Method Detail
-
add
public boolean add(String item)
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(Object o)
-
toArray
public Object[] toArray()
-
toArray
public <T> T[] toArray(T[] a)
-
remove
public boolean remove(Object o)
-
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAll
in interfaceCollection<T>
- Specified by:
containsAll
in interfaceList<T>
-
addAll
public boolean addAll(Collection<? extends String> c)
-
addAll
public boolean addAll(int index, Collection<? extends String> c)
-
removeAll
public boolean removeAll(Collection<?> c)
-
retainAll
public boolean retainAll(Collection<?> c)
-
clear
public void clear()
-
lastIndexOf
public int lastIndexOf(Object o)
- Specified by:
lastIndexOf
in interfaceList<T>
-
listIterator
public ListIterator<String> listIterator()
- Specified by:
listIterator
in interfaceList<T>
-
listIterator
public ListIterator<String> listIterator(int index)
- Specified by:
listIterator
in interfaceList<T>
-
getValues
public abstract String getValues()
-
-