public static enum MCdicomDirRecord.TraversalStatus extends java.lang.Enum<MCdicomDirRecord.TraversalStatus>
TraversalHandler
.Enum Constant and Description |
---|
Continue
The traversal continues normally with the lower level records of the current
record or with the next record if the current record does not have lower level records.
|
StopAll
Stop the traversal.
|
StopLevel
The traversal continues with the next record of the current record's parent, skipping all
lower level records and next records of the current record.
|
StopLower
The traversal continues with the next record of the current record, skipping the current
record's lower level records.
|
Modifier and Type | Method and Description |
---|---|
static MCdicomDirRecord.TraversalStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MCdicomDirRecord.TraversalStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MCdicomDirRecord.TraversalStatus Continue
public static final MCdicomDirRecord.TraversalStatus StopLevel
public static final MCdicomDirRecord.TraversalStatus StopLower
public static final MCdicomDirRecord.TraversalStatus StopAll
public static MCdicomDirRecord.TraversalStatus[] values()
for (MCdicomDirRecord.TraversalStatus c : MCdicomDirRecord.TraversalStatus.values()) System.out.println(c);
public static MCdicomDirRecord.TraversalStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null