Uses of Class
org.praxislive.core.ArgumentInfo
-
Packages that use ArgumentInfo Package Description org.praxislive.code org.praxislive.core org.praxislive.core.types -
-
Uses of ArgumentInfo in org.praxislive.code
Methods in org.praxislive.code that return ArgumentInfo Modifier and Type Method Description abstract ArgumentInfo
PropertyControl.Binding. getArgumentInfo()
ArgumentInfo
TypeConverter. getInfo()
Deprecated. -
Uses of ArgumentInfo in org.praxislive.core
Methods in org.praxislive.core that return ArgumentInfo Modifier and Type Method Description static ArgumentInfo
Info. argument(Function<Info.ArgumentInfoChooser,Info.ArgumentInfoBuilder<?>> a)
Apply the provided function to an ArgumentInfoChooser to choose and configure an ArgumentInfoBuilder and return the resulting ArgumentInfo.ArgumentInfo
Info.ArgumentInfoBuilder. build()
static ArgumentInfo
ComponentAddress. info()
static ArgumentInfo
ComponentInfo. info()
static ArgumentInfo
ComponentType. info()
static ArgumentInfo
PortAddress. info()
static ArgumentInfo
Value. info()
Use this method to return an ArgumentInfo argument that can be used to refer to ANY Value subclass.static ArgumentInfo
ArgumentInfo. of(Class<? extends Value> argClass)
Create an ArgumentInfo from the Value class and optional PMap of additional properties.static ArgumentInfo
ArgumentInfo. of(Class<? extends Value> argClass, PMap properties)
Create an ArgumentInfo from the Value class and optional PMap of additional properties.static ArgumentInfo
ArgumentInfo. parse(String string)
Methods in org.praxislive.core that return types with arguments of type ArgumentInfo Modifier and Type Method Description static Optional<ArgumentInfo>
ArgumentInfo. from(Value arg)
List<ArgumentInfo>
ControlInfo. inputs()
List<ArgumentInfo>
ControlInfo. outputs()
Methods in org.praxislive.core with parameters of type ArgumentInfo Modifier and Type Method Description static ControlInfo
ControlInfo. createPropertyInfo(ArgumentInfo argument, Value def, PMap properties)
static ControlInfo
ControlInfo. createReadOnlyPropertyInfo(ArgumentInfo argument, PMap properties)
Info.PropertyInfoBuilder
Info.PropertyInfoBuilder. input(ArgumentInfo info)
Add input ArgumentInfo.Info.FunctionInfoBuilder
Info.FunctionInfoBuilder. inputs(ArgumentInfo... inputs)
Add ArgumentInfo for function inputs.Info.ReadOnlyPropertyInfoBuilder
Info.ReadOnlyPropertyInfoBuilder. output(ArgumentInfo info)
Add output ArgumentInfo.Info.FunctionInfoBuilder
Info.FunctionInfoBuilder. outputs(ArgumentInfo... outputs)
Add ArgumentInfo for function outputs.Method parameters in org.praxislive.core with type arguments of type ArgumentInfo Modifier and Type Method Description static ControlInfo
ControlInfo. createFunctionInfo(List<ArgumentInfo> inputs, List<ArgumentInfo> outputs, PMap properties)
static ControlInfo
ControlInfo. createPropertyInfo(List<ArgumentInfo> arguments, List<Value> defaults, PMap properties)
static ControlInfo
ControlInfo. createReadOnlyPropertyInfo(List<ArgumentInfo> arguments, PMap properties)
-
Uses of ArgumentInfo in org.praxislive.core.types
Methods in org.praxislive.core.types that return ArgumentInfo Modifier and Type Method Description static ArgumentInfo
PArray. info()
Utility method to create anArgumentInfo
for arguments of type PArray.static ArgumentInfo
PBoolean. info()
static ArgumentInfo
PBytes. info()
static ArgumentInfo
PNumber. info()
static ArgumentInfo
PNumber. info(double min, double max)
static ArgumentInfo
PNumber. info(double min, double max, double skew)
static ArgumentInfo
PReference. info()
static ArgumentInfo
PReference. info(Class<?> clas)
static ArgumentInfo
PResource. info()
static ArgumentInfo
PResource. info(boolean allowEmpty)
static ArgumentInfo
PString. info()
static ArgumentInfo
PString. info(String... allowed)
static ArgumentInfo
PNumber. integerInfo()
static ArgumentInfo
PNumber. integerInfo(int min, int max)
-