public interface IBasicList
| Modifier and Type | Method and Description |
|---|---|
List<Boolean> |
getBooleanList()
Gets the value of this line as a List of Booleans.
Will convert all applicable values into Booleans. |
List<Byte> |
getByteList()
Gets the value of this line as a List of Bytes.
Will convert all applicable values into Bytes. |
List<Character> |
getCharacterList()
Gets the value of this line as a List of Characters.
Will convert all applicable values into Characters. |
List<Comment> |
getComments()
Returns a list with all the comments that are inside of this ListLine.
|
List<Double> |
getDoubleList()
Gets the value of this line as a List of Doubles.
Will convert all applicable values into Doubles. |
List<Float> |
getFloatList()
Gets the value of this line as a List of Floats.
Will convert all applicable values into Floats. |
List<Integer> |
getIntegerList()
Gets the value of this line as a List of Integers.
Will convert all applicable values into Integers. |
List<Long> |
getLongList()
Gets the value of this line as a List of Longs.
Will convert all applicable values into Longs. |
List<Object> |
getMixedList()
Converts whole numbers into Integers or Longs (whichever fits best)
Converts floating point numbers into Doubles Converts true, false, yes and no into their respective Boolean values |
List<Short> |
getShortList()
Gets the value of this line as a List of Shorts.
Will convert all applicable values into Shorts. |
List<String> |
getStringList()
Gets the value of this line as a List of Strings.
|
<T> List<T> |
getTList(Class<T> clazz)
Gets the value of this line as a List of T
If the value at the path does not exist or is not a List of T, this will return an empty list. |
List<Byte> getByteList()
List<Short> getShortList()
List<Integer> getIntegerList()
List<Long> getLongList()
List<Float> getFloatList()
List<Double> getDoubleList()
List<Boolean> getBooleanList()
List<Character> getCharacterList()
List<String> getStringList()
List<Comment> getComments()
CommentsList<Object> getMixedList()
<T> List<T> getTList(Class<T> clazz)
clazz - - The class of the type you want to get.Copyright © 2014. All rights reserved.