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 PArrayDefaultDelegateAPI. array(String s)Parse the given String into aPArray.default PArrayDefaultDelegateAPI. array(Property p)Attempt to extract aPArrayfrom the given Property.default PArrayDefaultDelegateAPI. 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 PArraySupportedTypes.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 PArrayPArray. EMPTYAn empty PArray.Methods in org.praxislive.core.types that return PArray Modifier and Type Method Description static PArrayPArray. of(Collection<? extends Value> collection)Create a PArray from the given collection of values.static PArrayPArray. of(Value... values)Create a PArray from the given collection of values.static PArrayPArray. 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 aCollectorthat 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.
-