Class HostFunction.Argument
- java.lang.Object
-
- de.larsgrefer.sass.embedded.functions.HostFunction.Argument
-
- Enclosing class:
- HostFunction
public static final class HostFunction.Argument extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getDefaultValue()
String
getName()
String
getSassSignature()
int
hashCode()
String
toString()
HostFunction.Argument
withDefaultValue(String defaultValue)
HostFunction.Argument
withName(String name)
-
-
-
Method Detail
-
getSassSignature
public String getSassSignature()
-
getName
public String getName()
-
withName
public HostFunction.Argument withName(String name)
- Returns:
- a clone of this object, except with this updated property (returns
this
if an identical value is passed).
-
withDefaultValue
public HostFunction.Argument withDefaultValue(@Nullable String defaultValue)
- Returns:
- a clone of this object, except with this updated property (returns
this
if an identical value is passed).
-
-