java.lang.Object | ||
↳ | com.datalogic.device.configuration.SerializableBlob | |
↳ | com.datalogic.device.configuration.StringArrayBlob |
Known Direct Subclasses |
StringArrayBlob
implements the SerializableBlob
that manages a list of String
.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Default constructor
| |||||||||||
StringArrayBlob's constructor from a list of
String . |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Appends the specified
String to the end of this list. | |||||||||||
Clear all
String elements in the list. | |||||||||||
Returns the
String at the specified position in this list. | |||||||||||
Returns an iterator over elements of
String . | |||||||||||
Removes the String at the specified position in this list.
| |||||||||||
Returns the number of
String elements in this list. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.datalogic.device.configuration.SerializableBlob
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.lang.Iterable
|
StringArrayBlob's constructor from a list of String
.
strings | List : List of multiple String .
|
---|
Appends the specified String
to the end of this list.
str | : String to be appended to this list.
|
---|
Returns the String
at the specified position in this list.
i | : index of the String to return. |
---|
Returns an iterator over elements of String
.
Iterator
: a String iterator.
Removes the String at the specified position in this list. Shifts any subsequent String to the left (subtracts one from their indices).
i | : the index of the element to be removed |
---|
Returns the number of String
elements in this list. If this list contains
more than Integer.MAX_VALUE
elements, returns
Integer.MAX_VALUE
.
int
the number of elements in this list