Class ArticulationRuleRequest.Builder
- Object
-
- Builder
-
- Enclosing class:
- ArticulationRuleRequest
public static final class ArticulationRuleRequest.Builder extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ArticulationRuleRequest.Builder
attributeTypeId(UUID attributeTypeId)
The ID of the attribute type.ArticulationRuleRequest
build()
ArticulationRuleRequest.Builder
id(UUID id)
The ID of the articulation rule.ArticulationRuleRequest.Builder
operation(@NotNull ArticulationOperation operation)
Theoperation
ADD or SET.ArticulationRuleRequest.Builder
score(@javax.validation.constraints.NotNull double score)
The articulation score (between 0 and 100).ArticulationRuleRequest.Builder
statusId(UUID statusId)
The ID of the status.String
toString()
ArticulationRuleRequest.Builder
withAttributeTypeId(UUID val)
Deprecated.This method will be removed in the future.ArticulationRuleRequest.Builder
withId(UUID val)
Deprecated.This method will be removed in the future.ArticulationRuleRequest.Builder
withOperation(ArticulationOperation val)
Deprecated.This method will be removed in the future.ArticulationRuleRequest.Builder
withScore(double val)
Deprecated.This method will be removed in the future.ArticulationRuleRequest.Builder
withStatusId(UUID val)
Deprecated.This method will be removed in the future.
-
-
-
Method Detail
-
withOperation
@Deprecated public ArticulationRuleRequest.Builder withOperation(ArticulationOperation val)
Deprecated.This method will be removed in the future. Please useoperation(ArticulationOperation)
-
withScore
@Deprecated public ArticulationRuleRequest.Builder withScore(double val)
Deprecated.This method will be removed in the future. Please usescore(double)
-
withStatusId
@Deprecated public ArticulationRuleRequest.Builder withStatusId(UUID val)
Deprecated.This method will be removed in the future. Please usestatusId(UUID)
-
withAttributeTypeId
@Deprecated public ArticulationRuleRequest.Builder withAttributeTypeId(UUID val)
Deprecated.This method will be removed in the future. Please useattributeTypeId(UUID)
-
withId
@Deprecated public ArticulationRuleRequest.Builder withId(UUID val)
Deprecated.This method will be removed in the future. Please useid(UUID)
-
id
public ArticulationRuleRequest.Builder id(UUID id)
The ID of the articulation rule.- Returns:
this
.
-
operation
public ArticulationRuleRequest.Builder operation(@NotNull @NotNull ArticulationOperation operation)
Theoperation
ADD or SET.- Returns:
this
.
-
score
public ArticulationRuleRequest.Builder score(@NotNull @javax.validation.constraints.NotNull double score)
The articulation score (between 0 and 100).- Returns:
this
.
-
statusId
public ArticulationRuleRequest.Builder statusId(UUID statusId)
The ID of the status.- Returns:
this
.
-
attributeTypeId
public ArticulationRuleRequest.Builder attributeTypeId(UUID attributeTypeId)
The ID of the attribute type.- Returns:
this
.
-
build
public ArticulationRuleRequest build()
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-