- java.lang.Object
-
- swim.args.Arg
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canEqual(Object other)
Arg
clone()
static Arg
create(String name)
static Arg
create(String name, String value)
static Arg
create(String name, String value, boolean optional)
<T> Output<T>
debug(Output<T> output)
Writes a developer readable, debug-formatted string representation of this object tooutput
.boolean
equals(Object other)
int
hashCode()
String
name()
boolean
optional()
Arg
optional(boolean optional)
String
toString()
String
value()
Arg
value(String value)
-
-
-
Method Detail
-
name
public String name()
-
value
public String value()
-
optional
public boolean optional()
-
optional
public Arg optional(boolean optional)
-
canEqual
public boolean canEqual(Object other)
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:Debug
Writes a developer readable, debug-formatted string representation of this object tooutput
.
-
-