Uses of Class
org.praxislive.core.types.PArray
-
Packages that use PArray Package Description org.praxislive.code org.praxislive.core.protocols org.praxislive.core.types -
-
Uses of PArray in org.praxislive.code
Methods in org.praxislive.code that return PArray Modifier and Type Method Description default PArray
DefaultDelegateAPI. array(String s)
Parse the given String into aPArray
.default PArray
DefaultDelegateAPI. array(Property p)
Attempt to extract aPArray
from the given Property.default PArray
DefaultDelegateAPI. array(Value v)
Convert the given Value into aPArray
. -
Uses of PArray in org.praxislive.core.protocols
Methods in org.praxislive.core.protocols that return PArray Modifier and Type Method Description PArray
SupportedTypes.Result. typesAsArray()
List of supported types as PArray for response call. -
Uses of PArray in org.praxislive.core.types
Fields in org.praxislive.core.types declared as PArray Modifier and Type Field Description static PArray
PArray. EMPTY
An empty PArray.Methods in org.praxislive.core.types that return PArray Modifier and Type Method Description static PArray
PArray. of(Collection<? extends Value> collection)
Create a PArray from the given collection of values.static PArray
PArray. of(Value... values)
Create a PArray from the given collection of values.static PArray
PArray. parse(String text)
Parse the given text into a PArray.Methods in org.praxislive.core.types that return types with arguments of type PArray Modifier and Type Method Description static <T extends Value>
Collector<T,?,PArray>PArray. collector()
Create aCollector
that can create a PArray from a Stream of Values.static Optional<PArray>
PArray. from(Value value)
Cast or convert the provided value into a PArray, wrapped in an Optional.
-