saker.build Documentation TaskDoc JavaDoc Packages
public interface BuildTargetParameterInformation extends InformationHolder
Contains information about a parameter of a build target.
saker.build 0.8.18
Fields
public static final String
TYPE_INPUT = "IN"
Input parameter type.
public static final String
TYPE_OUTPUT = "OUT"
Output parameter type.
Methods
public default FormattedTextContent
Gets documentational information about this build target parameter.
public String
Gets the name of the parameter.
public default String
Gets the type of the parameter.
public static final String TYPE_INPUT = "IN"
Input parameter type.
public static final String TYPE_OUTPUT = "OUT"
Output parameter type.
Gets documentational information about this build target parameter.
The information.
public abstract String getParameterName()
Gets the name of the parameter.
The name.
public default String getType()
Gets the type of the parameter.

The type is one of the constants declared in this interface named TYPE_*. The list of constants can be extended in the future, or may have script modelling specific meanings.

The type or null if not available.