| java.lang.Object org.jpox.metadata.MetaData org.jpox.metadata.SequenceMetaData
SequenceMetaData | public class SequenceMetaData extends MetaData (Code) | | Representation of the MetaData of a named Sequence (JDO, or JPA).
since: 1.1 version: $Revision: 1.12 $ |
allocationSize | protected long allocationSize(Code) | | Allocation size for the sequence.
|
datastoreSequence | protected String datastoreSequence(Code) | | Datastore Sequence name
|
factoryClass | protected String factoryClass(Code) | | factory class name (JDO).
|
initialValue | protected long initialValue(Code) | | Initial value of the sequence.
|
name | final protected String name(Code) | | Name under which this sequence generator is known.
|
SequenceMetaData | public SequenceMetaData(MetaData parent, String name, String datastoreSequence, String factoryClass, String strategyValue, String initialValue, String allocationSize)(Code) | | Constructor.
Parameters: parent - The parent of this element Parameters: name - The sequence name Parameters: datastoreSequence - The datastore sequence Parameters: factoryClass - The factory class Parameters: strategyValue - The strategy value Parameters: initialValue - Initial value Parameters: allocationSize - Allocation size |
getAllocationSize | public long getAllocationSize()(Code) | | Accessor for the allocation size of the sequence.
The allocation size |
getDatastoreSequence | public String getDatastoreSequence()(Code) | | Accessor for the sequence name
The sequence name |
getFactoryClass | public String getFactoryClass()(Code) | | Accessor for the factory class
factory class |
getFullyQualifiedName | public String getFullyQualifiedName()(Code) | | Convenience accessor for the fully-qualified name of the sequence.
Fully qualfiied name of the sequence (including the package name). |
getInitialValue | public long getInitialValue()(Code) | | Accessor for the initial value of the sequence.
The initial value |
getName | public String getName()(Code) | | Accessor for the class name.
class name |
toString | public String toString(String prefix, String indent)(Code) | | Returns a string representation of the object.
Parameters: prefix - prefix string Parameters: indent - indent string a string representation of the object. |
|
|