Package org.bouncycastle.util
Interface StringList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanadd(String s)Stringget(int index)intsize()String[]toStringArray()String[]toStringArray(int from, int to)Return a section of the contents of the list.
-
-
-
Method Detail
-
add
boolean add(String s)
-
get
String get(int index)
-
size
int size()
-
toStringArray
String[] toStringArray()
-
toStringArray
String[] toStringArray(int from, int to)
Return a section of the contents of the list. If the list is too short the array is filled with nulls.- Parameters:
from- the initial index of the range to be copied, inclusiveto- the final index of the range to be copied, exclusive.- Returns:
- an array of length to - from
-
-