Interface CustomInfoType.DetectionRule.LikelihoodAdjustmentOrBuilder (3.7.2)

public static interface CustomInfoType.DetectionRule.LikelihoodAdjustmentOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getAdjustmentCase()

public abstract CustomInfoType.DetectionRule.LikelihoodAdjustment.AdjustmentCase getAdjustmentCase()
Returns
TypeDescription
CustomInfoType.DetectionRule.LikelihoodAdjustment.AdjustmentCase

getFixedLikelihood()

public abstract Likelihood getFixedLikelihood()

Set the likelihood of a finding to a fixed value.

.google.privacy.dlp.v2.Likelihood fixed_likelihood = 1;

Returns
TypeDescription
Likelihood

The fixedLikelihood.

getFixedLikelihoodValue()

public abstract int getFixedLikelihoodValue()

Set the likelihood of a finding to a fixed value.

.google.privacy.dlp.v2.Likelihood fixed_likelihood = 1;

Returns
TypeDescription
int

The enum numeric value on the wire for fixedLikelihood.

getRelativeLikelihood()

public abstract int getRelativeLikelihood()

Increase or decrease the likelihood by the specified number of levels. For example, if a finding would be POSSIBLE without the detection rule and relative_likelihood is 1, then it is upgraded to LIKELY, while a value of -1 would downgrade it to UNLIKELY. Likelihood may never drop below VERY_UNLIKELY or exceed VERY_LIKELY, so applying an adjustment of 1 followed by an adjustment of -1 when base likelihood is VERY_LIKELY will result in a final likelihood of LIKELY.

int32 relative_likelihood = 2;

Returns
TypeDescription
int

The relativeLikelihood.

hasFixedLikelihood()

public abstract boolean hasFixedLikelihood()

Set the likelihood of a finding to a fixed value.

.google.privacy.dlp.v2.Likelihood fixed_likelihood = 1;

Returns
TypeDescription
boolean

Whether the fixedLikelihood field is set.

hasRelativeLikelihood()

public abstract boolean hasRelativeLikelihood()

Increase or decrease the likelihood by the specified number of levels. For example, if a finding would be POSSIBLE without the detection rule and relative_likelihood is 1, then it is upgraded to LIKELY, while a value of -1 would downgrade it to UNLIKELY. Likelihood may never drop below VERY_UNLIKELY or exceed VERY_LIKELY, so applying an adjustment of 1 followed by an adjustment of -1 when base likelihood is VERY_LIKELY will result in a final likelihood of LIKELY.

int32 relative_likelihood = 2;

Returns
TypeDescription
boolean

Whether the relativeLikelihood field is set.