|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.opends.server.tools.makeldif.TagResult
public class TagResult
This class defines a data structure that provides information about the result of tag processing.
Field Summary | |
---|---|
static TagResult |
OMIT_FROM_ENTRY
A tag result that indicates the value should not be included in the entry, but all other processing should continue. |
static TagResult |
STOP_PROCESSING
A tag result in whihc all components have a value of false . |
static TagResult |
SUCCESS_RESULT
A tag result in which all components have a value of true . |
Constructor Summary | |
---|---|
TagResult(boolean keepProcessingLine,
boolean keepProcessingEntry,
boolean keepProcessingParent,
boolean keepProcessingTemplateFile)
Creates a new tag result object with the provided information. |
Method Summary | |
---|---|
boolean |
keepProcessingEntry()
Indicates whether to continue processing for the current entry. |
boolean |
keepProcessingLine()
Indicates whether to continue processing for the current line. |
boolean |
keepProcessingParent()
Indicates whether to continue processing entries below the current parent. |
boolean |
keepProcessingTemplateFile()
Indicates whether to keep processing entries for the template file. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final TagResult SUCCESS_RESULT
true
.
public static final TagResult OMIT_FROM_ENTRY
public static final TagResult STOP_PROCESSING
false
.
Constructor Detail |
---|
public TagResult(boolean keepProcessingLine, boolean keepProcessingEntry, boolean keepProcessingParent, boolean keepProcessingTemplateFile)
keepProcessingLine
- Indicates whether to continue
processing for the current line. If
not, then the line will not be included
in the entry.keepProcessingEntry
- Indicates whether to continue
processing for the current entry. If
not, then the entry will not be
included in the data.keepProcessingParent
- Indicates whether to continue
processing entries below the current
parent in the template file.keepProcessingTemplateFile
- Indicates whether to continue
processing entries for the template
file.Method Detail |
---|
public boolean keepProcessingLine()
false
, then the current line will not be included in the
entry. It will have no impact on whehter the entry itself is included in
the generated LDIF.
true
if the line should be included in the entry, or
false
if not.public boolean keepProcessingEntry()
false
, then the current entry will not be included in the
generated LDIF, and processing will resume with the next entry below the
current parent.
true
if the entry should be included in the
generated LDIF, or false
if not.public boolean keepProcessingParent()
false
, then the current entry will not be included,
and processing will resume below the next parent in the template file.
true
if processing for the current parent should
continue, or false
if not.public boolean keepProcessingTemplateFile()
false
, then LDIF processing will end immediately (and
the current entry will not be included).
true
if processing for the template file should
continue, or false
if not.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |