Package com.launchdarkly.api.model
Class Clause
- java.lang.Object
-
- com.launchdarkly.api.model.Clause
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-05-16T11:29:12.794018Z[Etc/UTC]") public class Clause extends java.lang.ObjectClause
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classClause.CustomTypeAdapterFactory
-
Field Summary
Fields Modifier and Type Field Description static java.util.HashSet<java.lang.String>openapiFieldsstatic java.util.HashSet<java.lang.String>openapiRequiredFieldsstatic java.lang.StringSERIALIZED_NAME_ATTRIBUTEstatic java.lang.StringSERIALIZED_NAME_CONTEXT_KINDstatic java.lang.StringSERIALIZED_NAME_IDstatic java.lang.StringSERIALIZED_NAME_NEGATEstatic java.lang.StringSERIALIZED_NAME_OPstatic java.lang.StringSERIALIZED_NAME_VALUES
-
Constructor Summary
Constructors Constructor Description Clause()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClauseaddValuesItem(java.lang.Object valuesItem)Clauseattribute(java.lang.String attribute)ClausecontextKind(java.lang.String contextKind)booleanequals(java.lang.Object o)static ClausefromJson(java.lang.String jsonString)Create an instance of Clause given an JSON stringjava.util.Map<java.lang.String,java.lang.Object>getAdditionalProperties()Return the additional (undeclared) property.java.lang.ObjectgetAdditionalProperty(java.lang.String key)Return the additional (undeclared) property with the specified name.java.lang.StringgetAttribute()Get attributejava.lang.StringgetContextKind()Get contextKindjava.lang.StringgetId()Get idjava.lang.BooleangetNegate()Get negatejava.lang.StringgetOp()Get opjava.util.List<java.lang.Object>getValues()Get valuesinthashCode()Clauseid(java.lang.String id)Clausenegate(java.lang.Boolean negate)Clauseop(java.lang.String op)ClauseputAdditionalProperty(java.lang.String key, java.lang.Object value)Set the additional (undeclared) property with the specified name and value.voidsetAttribute(java.lang.String attribute)voidsetContextKind(java.lang.String contextKind)voidsetId(java.lang.String id)voidsetNegate(java.lang.Boolean negate)voidsetOp(java.lang.String op)voidsetValues(java.util.List<java.lang.Object> values)java.lang.StringtoJson()Convert an instance of Clause to an JSON stringjava.lang.StringtoString()static voidvalidateJsonObject(com.google.gson.JsonObject jsonObj)Validates the JSON Object and throws an exception if issues foundClausevalues(java.util.List<java.lang.Object> values)
-
-
-
Field Detail
-
SERIALIZED_NAME_ID
public static final java.lang.String SERIALIZED_NAME_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ATTRIBUTE
public static final java.lang.String SERIALIZED_NAME_ATTRIBUTE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_OP
public static final java.lang.String SERIALIZED_NAME_OP
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_VALUES
public static final java.lang.String SERIALIZED_NAME_VALUES
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_CONTEXT_KIND
public static final java.lang.String SERIALIZED_NAME_CONTEXT_KIND
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_NEGATE
public static final java.lang.String SERIALIZED_NAME_NEGATE
- See Also:
- Constant Field Values
-
openapiFields
public static java.util.HashSet<java.lang.String> openapiFields
-
openapiRequiredFields
public static java.util.HashSet<java.lang.String> openapiRequiredFields
-
-
Method Detail
-
id
public Clause id(java.lang.String id)
-
getId
@Nullable public java.lang.String getId()
Get id- Returns:
- id
-
setId
public void setId(java.lang.String id)
-
attribute
public Clause attribute(java.lang.String attribute)
-
getAttribute
@Nonnull public java.lang.String getAttribute()
Get attribute- Returns:
- attribute
-
setAttribute
public void setAttribute(java.lang.String attribute)
-
op
public Clause op(java.lang.String op)
-
getOp
@Nonnull public java.lang.String getOp()
Get op- Returns:
- op
-
setOp
public void setOp(java.lang.String op)
-
values
public Clause values(java.util.List<java.lang.Object> values)
-
addValuesItem
public Clause addValuesItem(java.lang.Object valuesItem)
-
getValues
@Nonnull public java.util.List<java.lang.Object> getValues()
Get values- Returns:
- values
-
setValues
public void setValues(java.util.List<java.lang.Object> values)
-
contextKind
public Clause contextKind(java.lang.String contextKind)
-
getContextKind
@Nullable public java.lang.String getContextKind()
Get contextKind- Returns:
- contextKind
-
setContextKind
public void setContextKind(java.lang.String contextKind)
-
negate
public Clause negate(java.lang.Boolean negate)
-
getNegate
@Nonnull public java.lang.Boolean getNegate()
Get negate- Returns:
- negate
-
setNegate
public void setNegate(java.lang.Boolean negate)
-
putAdditionalProperty
public Clause putAdditionalProperty(java.lang.String key, java.lang.Object value)
Set the additional (undeclared) property with the specified name and value. If the property does not already exist, create it otherwise replace it.
-
getAdditionalProperties
public java.util.Map<java.lang.String,java.lang.Object> getAdditionalProperties()
Return the additional (undeclared) property.
-
getAdditionalProperty
public java.lang.Object getAdditionalProperty(java.lang.String key)
Return the additional (undeclared) property with the specified name.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
validateJsonObject
public static void validateJsonObject(com.google.gson.JsonObject jsonObj) throws java.io.IOExceptionValidates the JSON Object and throws an exception if issues found- Parameters:
jsonObj- JSON Object- Throws:
java.io.IOException- if the JSON Object is invalid with respect to Clause
-
fromJson
public static Clause fromJson(java.lang.String jsonString) throws java.io.IOException
Create an instance of Clause given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of Clause
- Throws:
java.io.IOException- if the JSON string is invalid with respect to Clause
-
toJson
public java.lang.String toJson()
Convert an instance of Clause to an JSON string- Returns:
- JSON string
-
-