org.yaml.snakeyaml.events
Class CollectionStartEvent
java.lang.Object
org.yaml.snakeyaml.events.Event
org.yaml.snakeyaml.events.NodeEvent
org.yaml.snakeyaml.events.CollectionStartEvent
- Direct Known Subclasses:
- MappingStartEvent, SequenceStartEvent
public abstract class CollectionStartEvent
- extends NodeEvent
Base class for the start events of the collection nodes.
Nested classes/interfaces inherited from class org.yaml.snakeyaml.events.Event |
Event.ID |
Constructor Summary |
CollectionStartEvent(java.lang.String anchor,
java.lang.String tag,
boolean implicit,
Mark startMark,
Mark endMark,
java.lang.Boolean flowStyle)
|
Method Summary |
protected java.lang.String |
getArguments()
|
java.lang.Boolean |
getFlowStyle()
true if this collection is in flow style, false
for block style. |
boolean |
getImplicit()
true if the tag can be omitted while this collection is
emitted. |
java.lang.String |
getTag()
Tag of this collection. |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
CollectionStartEvent
public CollectionStartEvent(java.lang.String anchor,
java.lang.String tag,
boolean implicit,
Mark startMark,
Mark endMark,
java.lang.Boolean flowStyle)
getTag
public java.lang.String getTag()
- Tag of this collection.
- Returns:
- The tag of this collection, or
null
if no explicit
tag is available.
getImplicit
public boolean getImplicit()
true
if the tag can be omitted while this collection is
emitted.
- Returns:
- True if the tag can be omitted while this collection is emitted.
getFlowStyle
public java.lang.Boolean getFlowStyle()
true
if this collection is in flow style, false
for block style.
- Returns:
- If this collection is in flow style.
getArguments
protected java.lang.String getArguments()
- Overrides:
getArguments
in class NodeEvent
- See Also:
for Event in PyYAML
Copyright © 2008-2011. All Rights Reserved.