public static enum CustomMaskingExpression.Type extends Enum<CustomMaskingExpression.Type>
Enum Constant and Description |
---|
CUSTOM
Mask with a custom expression.
|
DEFAULT
Mask the field with a default masking expression indicated on the restriction.
|
FIRST_4
Shows only first for characters.
|
HIDE
Hides the value with null.
|
LATEST_4
Shows only latest four characters.
|
ONLY_YEAR
Shows only the year (other values are reset).
|
REDACT
Redacts the value with a different expression per type (predefined by Denodo).
|
REDACT_ASTERISK
Redacts with asterisks.
|
REMOVE_DAY
Reset the day.
|
REMOVE_TIME
Reset the time.
|
ROUND
Round the value.
|
SET_0
Set to 0 the value.
|
SET_MINUS_1
Set to -1 the value.
|
Modifier and Type | Method and Description |
---|---|
static CustomMaskingExpression.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomMaskingExpression.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomMaskingExpression.Type CUSTOM
public static final CustomMaskingExpression.Type DEFAULT
public static final CustomMaskingExpression.Type FIRST_4
public static final CustomMaskingExpression.Type HIDE
public static final CustomMaskingExpression.Type LATEST_4
public static final CustomMaskingExpression.Type ONLY_YEAR
public static final CustomMaskingExpression.Type REDACT
public static final CustomMaskingExpression.Type REDACT_ASTERISK
public static final CustomMaskingExpression.Type REMOVE_TIME
public static final CustomMaskingExpression.Type REMOVE_DAY
public static final CustomMaskingExpression.Type ROUND
public static final CustomMaskingExpression.Type SET_0
public static final CustomMaskingExpression.Type SET_MINUS_1
public static CustomMaskingExpression.Type[] values()
for (CustomMaskingExpression.Type c : CustomMaskingExpression.Type.values()) System.out.println(c);
public static CustomMaskingExpression.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024 Denodo Technologies. All rights reserved.