Class CustomParameter
- java.lang.Object
-
- com.trivago.cluecumber.engine.rendering.pages.pojos.CustomParameter
-
public class CustomParameter extends Object
Custom report parameters.
-
-
Constructor Summary
Constructors Constructor Description CustomParameter(String key, String value)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKey()Return the parameter name.StringgetValue()Return the parameter value.booleanisRelativeUrl()Check if the value is a relative URL.booleanisUrl()Check if the value is a URL.
-
-
-
Method Detail
-
getKey
public String getKey()
Return the parameter name.- Returns:
- The name.
-
getValue
public String getValue()
Return the parameter value.- Returns:
- The value.
-
isUrl
public boolean isUrl()
Check if the value is a URL.- Returns:
- true if it is a URL.
-
isRelativeUrl
public boolean isRelativeUrl()
Check if the value is a relative URL.- Returns:
- true if it is a relative URL.
-
-