public enum UseIdentifiers extends Enum<UseIdentifiers>
Enum Constant and Description |
---|
NEVER
Never use IDs, always use the content matching strategy.
|
ONLY
Only use id, do not fall back on content based matching if no id is found.
|
WHEN_AVAILABLE
Use ID when available on an element, if not available use the content matching strategy.
|
Modifier and Type | Method and Description |
---|---|
static UseIdentifiers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UseIdentifiers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UseIdentifiers ONLY
public static final UseIdentifiers WHEN_AVAILABLE
public static final UseIdentifiers NEVER
public static UseIdentifiers[] values()
for (UseIdentifiers c : UseIdentifiers.values()) System.out.println(c);
public static UseIdentifiers 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 null
Copyright (c) 2006, 2015 Obeo and others. All rights reserved.