| 
 | BeanIO 2.0.4 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.beanio.internal.util.TreeNode<Component>
org.beanio.internal.parser.Component
org.beanio.internal.parser.ParserComponent
org.beanio.internal.parser.Segment
org.beanio.internal.parser.Record
public class Record
| Field Summary | 
|---|
| Fields inherited from interface org.beanio.internal.parser.Selector | 
|---|
| COUNT_KEY | 
| Constructor Summary | |
|---|---|
| Record()Constructs a new Record. | |
| Method Summary | |
|---|---|
|  Selector | close(ParsingContext context)Checks for any unsatisfied components before the stream is closed. | 
|  int | getCount(ParsingContext context)Returns the number of times this component was matched within the current iteration of its parent component. | 
|  RecordFormat | getFormat() | 
| protected  String | getKey(String namespace,
       String name)Returns a Map key for accessing state information for this Node. | 
|  int | getMaxOccurs()Returns the maximum number of occurrences of this component (within the context of its parent). | 
|  int | getMinOccurs()Returns the minimum number of occurrences of this component (within the context of its parent). | 
|  int | getOrder()Returns the order of this component (within the context of its parent). | 
|  boolean | isMaxOccursReached(ParsingContext context)Returns whether this component has reached its maximum occurrences. | 
|  boolean | isRecordGroup()Returns whether this component is a record group. | 
|  boolean | marshal(MarshallingContext context)Marshals a record. | 
|  Selector | matchAny(UnmarshallingContext context)Finds a parser that matches the input record. | 
|  boolean | matches(UnmarshallingContext context)Returns whether this parser and its children match a record being unmarshalled. | 
|  Selector | matchNext(MarshallingContext context)Finds a parser for marshalling a bean object. | 
|  Selector | matchNext(UnmarshallingContext context)Finds a parser for unmarshalling a record based on the current state of the stream. | 
|  void | registerLocals(Set<ParserLocal<?>> locals)Called by a stream to register variables stored in the parsing context. | 
|  void | reset(ParsingContext context)Resets the component count of this Selector's children. | 
|  void | restoreState(ParsingContext context,
             String namespace,
             Map<String,Object> state)Restores a Map of previously stored state information. | 
|  void | setCount(ParsingContext context,
         int count)Sets the number of times this component was matched within the current iteration of its parent component. | 
|  void | setFormat(RecordFormat format) | 
|  void | setMaxOccurs(int maxOccurs) | 
|  void | setMinOccurs(int minOccurs) | 
|  void | setOrder(int order) | 
|  void | skip(UnmarshallingContext context)Skips a record or group of records. | 
| protected  void | toParamString(StringBuilder s)Called by TreeNode.toString()to append node parameters to the output. | 
|  boolean | unmarshal(UnmarshallingContext context)Unmarshals a record. | 
|  void | updateState(ParsingContext context,
            String namespace,
            Map<String,Object> state)Updates a Map with the current state of the Marshaller. | 
| Methods inherited from class org.beanio.internal.parser.Segment | 
|---|
| clearValue, getProperty, getSize, getValue, hasContent, isExistencePredetermined, isIdentifier, isLazy, isRepeating, setExistencePredetermined, setIdentifier, setLazy, setProperty, setRepeating, setSize, setValue | 
| Methods inherited from class org.beanio.internal.parser.ParserComponent | 
|---|
| isSupportedChild | 
| Methods inherited from class org.beanio.internal.util.TreeNode | 
|---|
| add, clone, find, getChildren, getFirst, getName, iterator, print, setName, size, sort, toString, updateReferences | 
| Methods inherited from class java.lang.Object | 
|---|
| equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Methods inherited from interface org.beanio.internal.parser.Selector | 
|---|
| getProperty | 
| Methods inherited from interface org.beanio.internal.parser.Parser | 
|---|
| clearValue, getName, getSize, getValue, hasContent, isIdentifier, isLazy, setValue | 
| Constructor Detail | 
|---|
public Record()
| Method Detail | 
|---|
public boolean marshal(MarshallingContext context)
                throws IOException
Parser
marshal in interface Parsermarshal in class Segmentcontext - the MarshallingContext
IOException - if an I/O error occurspublic boolean unmarshal(UnmarshallingContext context)
Parser
unmarshal in interface Parserunmarshal in class Segmentcontext - the UnmarshallingContext
public void skip(UnmarshallingContext context)
Selector
skip in interface Selectorcontext - the UnmarshallingContextpublic Selector matchNext(MarshallingContext context)
Selector
matchNext in interface Selectorcontext - the MarshallingContext
Selector for marshalling the bean objectpublic Selector matchNext(UnmarshallingContext context)
Selector
matchNext in interface Selectorcontext - the UnmarshallingContext
Selector for unmarshalling the recordpublic boolean matches(UnmarshallingContext context)
Parser
matches in interface Parsermatches in class Segmentcontext - the UnmarshallingContext
public Selector matchAny(UnmarshallingContext context)
SelectorSelector.matchNext(UnmarshallingContext) returns null, in order to differentiate
 between unexpected and unidentified record types.
matchAny in interface Selectorcontext - the UnmarshallingContext
Selectorpublic Selector close(ParsingContext context)
Selector
close in interface Selectorcontext - the ParsingContext
public void reset(ParsingContext context)
Selector
reset in interface Selectorcontext - the ParsingContext
public void updateState(ParsingContext context,
                        String namespace,
                        Map<String,Object> state)
updateState in interface Selectornamespace - a String to prefix all state keys withstate - the Map to update with the latest statecontext - the ParsingContext
public void restoreState(ParsingContext context,
                         String namespace,
                         Map<String,Object> state)
restoreState in interface Selectornamespace - a String to prefix all state keys withstate - the Map containing the state to restorecontext - the ParsingContext
protected String getKey(String namespace,
                        String name)
namespace - the assigned namespace for the keyname - the state information to access
public boolean isRecordGroup()
Selector
isRecordGroup in interface Selectorpublic int getMinOccurs()
Selector
getMinOccurs in interface Selectorpublic void setMinOccurs(int minOccurs)
public int getMaxOccurs()
Selector
getMaxOccurs in interface Selectorpublic void setMaxOccurs(int maxOccurs)
public int getOrder()
Selector
getOrder in interface Selectorpublic void setOrder(int order)
public int getCount(ParsingContext context)
Selector
getCount in interface Selectorcontext - the ParsingContext
public void setCount(ParsingContext context,
                     int count)
Selector
setCount in interface Selectorcontext - the ParsingContextcount - the new match countpublic RecordFormat getFormat()
public void setFormat(RecordFormat format)
public void registerLocals(Set<ParserLocal<?>> locals)
Component
registerLocals in class Segmentlocals - set of local variablespublic boolean isMaxOccursReached(ParsingContext context)
Selector
isMaxOccursReached in interface Selectorcontext - the ParsingContext
protected void toParamString(StringBuilder s)
TreeNodeTreeNode.toString() to append node parameters to the output.
toParamString in class Segments - the output to append| 
 | BeanIO 2.0.4 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||