com.semarchy.mdm.runtime.model.dbschema
Interface IDBSequence

All Known Subinterfaces:
ISequence

public interface IDBSequence


Method Summary
 BigInteger getIncrementBy()
           
 String getSequenceName()
           
 BigInteger getStartWith()
           
 boolean isOrdered()
          Indicates if sequence is configured to be fully Ordered (see oracle SEQUENCE ORDER).
 

Method Detail

getSequenceName

String getSequenceName()
Returns:
the physical name of this sequence

getStartWith

BigInteger getStartWith()
Returns:
the starting position of the sequence. must always be greater than or equal to 1

getIncrementBy

BigInteger getIncrementBy()
Returns:
the increment of the sequence - usually 1

isOrdered

boolean isOrdered()
Indicates if sequence is configured to be fully Ordered (see oracle SEQUENCE ORDER).

Returns:


Copyright © 2015. All Rights Reserved.