Modifier and Type | Method and Description |
---|---|
boolean |
add(String s)
Add a String to the list.
|
String |
get(int index)
Get the string at index index.
|
int |
size() |
String[] |
toStringArray()
Return the contents of the list as an array.
|
String[] |
toStringArray(int from,
int to)
Return a section of the contents of the list.
|
forEach, spliterator
boolean add(String s)
s
- the String to add.String get(int index)
index
- the index position of the String of interest.int size()
String[] toStringArray()
String[] toStringArray(int from, int to)
from
- the initial index of the range to be copied, inclusiveto
- the final index of the range to be copied, exclusive.Copyright © 2017 BouncyCastle.org. All rights reserved.