Class NamedParameter
- java.lang.Object
-
- com.exasol.errorcodecrawlermavenplugin.model.NamedParameter
-
public class NamedParameter extends Object
This class represents a parameter of anExaErrorinvocation.
-
-
Constructor Summary
Constructors Constructor Description NamedParameter(String name, String description, boolean quoted)Create a new instance ofNamedParameter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)StringgetDescription()Get the description for this parameter (3rd parameter of parameterCall).StringgetName()Get the name of the parameterinthashCode()booleanisQuoted()Get if the parameter should get quoted.StringtoString()
-
-
-
Constructor Detail
-
NamedParameter
public NamedParameter(String name, String description, boolean quoted)
Create a new instance ofNamedParameter.- Parameters:
name- parameter namedescription- parameter descriptionquoted-trueif the parameter should be quouted
-
-
Method Detail
-
getName
public String getName()
Get the name of the parameter- Returns:
- parameter name
-
getDescription
public String getDescription()
Get the description for this parameter (3rd parameter of parameterCall).- Returns:
- description of the parameter
-
isQuoted
public boolean isQuoted()
Get if the parameter should get quoted.- Returns:
trueif the parameter should get quoted.
-
-