public enum SchemaVisitorAction extends Enum<SchemaVisitorAction>
Enum Constant and Description |
---|
CONTINUE
continue visit.
|
SKIP_SIBLINGS
Skip visiting the siblings of this schema.
|
SKIP_SUBTREE
when returned from pre non terminal visit method the children of the non
terminal are skipped.
|
TERMINATE
terminate visit.
|
Modifier and Type | Method and Description |
---|---|
static SchemaVisitorAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaVisitorAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaVisitorAction CONTINUE
public static final SchemaVisitorAction TERMINATE
public static final SchemaVisitorAction SKIP_SUBTREE
public static final SchemaVisitorAction SKIP_SIBLINGS
public static SchemaVisitorAction[] values()
for (SchemaVisitorAction c : SchemaVisitorAction.values()) System.out.println(c);
public static SchemaVisitorAction 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 © 2009–2020 The Apache Software Foundation. All rights reserved.