public enum CodeMatchStrategy extends Enum<CodeMatchStrategy>
| Enum Constant and Description |
|---|
LAX
Use for leveraged targets.
|
STRICT
Use as default for filter merging.
|
| Modifier and Type | Method and Description |
|---|---|
static CodeMatchStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodeMatchStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeMatchStrategy LAX
Code.getTagType(), but try Code.getId() and Code.getOriginalId() and
Code.getData() first. With special logic for matching isolated codes.public static final CodeMatchStrategy STRICT
Code.getId() or Code.getOriginalId() first, if no match then try Code.getData()
and Code.getTagType(). With special logic for matching isolated codes.public static CodeMatchStrategy[] values()
for (CodeMatchStrategy c : CodeMatchStrategy.values()) System.out.println(c);
public static CodeMatchStrategy 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 © 2022. All rights reserved.