Class StringVariable

    • Field Detail

      • value

        @Property(required=false,
                  description="Value of the release variable or default value of the template variable")
        protected java.lang.String value
      • preventInterpolation

        @Property(required=false,
                  description="Set this to true if you don\'t want the contents of this variable scanned for other variables and updated after the variables are resolved.")
        protected boolean preventInterpolation
    • Constructor Detail

      • StringVariable

        public StringVariable()
    • Method Detail

      • getValue

        public java.lang.String getValue()
        Description copied from class: Variable
        Gets underlying value of this variable, or default value for templates. The specific type of value depends on the type of variable.
        Specified by:
        getValue in class Variable.VariableWithValue<java.lang.String>
        Returns:
        the underlying value of this variable, or default value for templates.
      • getMultiline

        public boolean getMultiline()
      • setMultiline

        public void setMultiline​(boolean multiline)
      • getEmptyValue

        public java.lang.String getEmptyValue()
        Description copied from class: Variable
        Returns empty value for the specific sub type. Empty value is used when replacing unset optional variables.
        Specified by:
        getEmptyValue in class Variable
        Returns:
        empty value for the specific sub type.
      • setUntypedValue

        public void setUntypedValue​(java.lang.Object newValue)
        Description copied from class: Variable
        Sets the underlying value of this variable from given object. If a conversion happens to be needed and fails, then an IllegalArgumentException will be thrown.
        Specified by:
        setUntypedValue in class Variable
        Parameters:
        newValue - the value to set: either of the type needed by this variable type, or one of convertible types.
      • isValueAssignableFrom

        public boolean isValueAssignableFrom​(java.lang.Object value)
        Specified by:
        isValueAssignableFrom in class Variable
      • isPreventInterpolation

        public boolean isPreventInterpolation()
      • setPreventInterpolation

        public void setPreventInterpolation​(boolean preventInterpolation)