Class CLValueResult.Result
- java.lang.Object
-
- com.syntifi.casper.sdk.model.clvalue.CLValueResult.Result
-
- Enclosing class:
- CLValueResult
protected class CLValueResult.Result extends java.lang.Object
`Result` with `Ok` and `Err` variants of `CLType`s.- Since:
- 0.0.1
- See Also:
CLTypeData
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Result()
protected
Result(AbstractCLValue<?,?> ok, AbstractCLValue<?,?> err)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(java.lang.Object other)
boolean
equals(java.lang.Object o)
AbstractCLValue<?,?>
getErr()
AbstractCLValue<?,?>
getOk()
int
hashCode()
void
setErr(AbstractCLValue<?,?> err)
void
setOk(AbstractCLValue<?,?> ok)
java.lang.String
toString()
-
-
-
Constructor Detail
-
Result
protected Result()
-
Result
protected Result(AbstractCLValue<?,?> ok, AbstractCLValue<?,?> err)
-
-
Method Detail
-
getOk
public AbstractCLValue<?,?> getOk()
-
getErr
public AbstractCLValue<?,?> getErr()
-
setOk
public void setOk(AbstractCLValue<?,?> ok)
-
setErr
public void setErr(AbstractCLValue<?,?> err)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-