Package cdc.issues
Class Param
- java.lang.Object
-
- cdc.issues.Param
-
public final class Param extends Object
Definition of an effective parameter.It is a (name, value) pair, where name can not be
null.- Author:
- Damien Carbonne
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classParam.BuilderBuilder ofParam.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Param.Builderbuilder()booleanequals(Object object)StringgetName()StringgetValue()inthashCode()StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- The parameter name.
-
getValue
public String getValue()
- Returns:
- The parameter value.
-
builder
public static Param.Builder builder()
- Returns:
- A new
Param.BuilderofParam.
-
-