Class ArticulationRuleRequest
- Object
-
- ArticulationRuleRequest
-
- All Implemented Interfaces:
Serializable
public class ArticulationRuleRequest extends Object implements Serializable
Articulation rule.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ArticulationRuleRequest.Builder
-
Constructor Summary
Constructors Constructor Description ArticulationRuleRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ArticulationRuleRequest.Builder
anArticulationRuleRequest()
Deprecated.This method will be removed in the future.static ArticulationRuleRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
UUID
getAttributeTypeId()
The ID of the attribute type.UUID
getId()
The ID of the articulation rule.@NotNull ArticulationOperation
getOperation()
Theoperation
ADD or SET.@javax.validation.constraints.NotNull double
getScore()
The articulation score (between 0 and 100).UUID
getStatusId()
The ID of the status.int
hashCode()
void
setAttributeTypeId(UUID attributeTypeId)
The ID of the attribute type.void
setId(UUID id)
The ID of the articulation rule.void
setOperation(@NotNull ArticulationOperation operation)
Theoperation
ADD or SET.void
setScore(@javax.validation.constraints.NotNull double score)
The articulation score (between 0 and 100).void
setStatusId(UUID statusId)
The ID of the status.String
toString()
-
-
-
Method Detail
-
anArticulationRuleRequest
@Deprecated public static ArticulationRuleRequest.Builder anArticulationRuleRequest()
Deprecated.This method will be removed in the future. Please usebuilder()
.Returns a builder for this class.
-
builder
public static ArticulationRuleRequest.Builder builder()
-
getId
public UUID getId()
The ID of the articulation rule.
-
getOperation
@NotNull public @NotNull ArticulationOperation getOperation()
Theoperation
ADD or SET.
-
getScore
@NotNull public @javax.validation.constraints.NotNull double getScore()
The articulation score (between 0 and 100).
-
getStatusId
public UUID getStatusId()
The ID of the status.
-
getAttributeTypeId
public UUID getAttributeTypeId()
The ID of the attribute type.
-
setId
public void setId(UUID id)
The ID of the articulation rule.
-
setOperation
public void setOperation(@NotNull @NotNull ArticulationOperation operation)
Theoperation
ADD or SET.
-
setScore
public void setScore(@NotNull @javax.validation.constraints.NotNull double score)
The articulation score (between 0 and 100).
-
setStatusId
public void setStatusId(UUID statusId)
The ID of the status.
-
setAttributeTypeId
public void setAttributeTypeId(UUID attributeTypeId)
The ID of the attribute type.
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-