Package me.hsgamer.bettergui.builder
Class ActionBuilder.Input
- java.lang.Object
-
- me.hsgamer.bettergui.builder.ActionBuilder.Input
-
- Enclosing class:
- ActionBuilder
public static class ActionBuilder.Input extends Object
The input for the action builder
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getOptionAsList()Get the option as a list.List<String>getOptionAsList(String separator)Get the option as a listMap<String,String>getOptionAsMap()Get the option as a map.Stream<String>getOptionStream()Get the option as a stream.Stream<String>getOptionStream(String separator)Get the option as a stream
-
-
-
Method Detail
-
getOptionStream
public Stream<String> getOptionStream(String separator)
Get the option as a stream- Parameters:
separator- the separator- Returns:
- the list
-
getOptionStream
public Stream<String> getOptionStream()
Get the option as a stream. The format isvalue,value- Returns:
- the list
- See Also:
getOptionStream(String)
-
getOptionAsList
public List<String> getOptionAsList(String separator)
Get the option as a list- Parameters:
separator- the separator- Returns:
- the list
- See Also:
getOptionStream(String)
-
getOptionAsList
public List<String> getOptionAsList()
Get the option as a list. The format isvalue,value- Returns:
- the list
- See Also:
getOptionStream()
-
-