public interface IDatabaseSequence
extends java.io.Serializable
Description: 'Provides access to members that request database sequences.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
IID
Deprecated.
Internal use only
|
static int |
IIDbe61a3ae_26c6_4302_b226_93e33219d46c |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
void |
createSequence(java.lang.String sequenceName,
int startValue,
int incrementValue)
Create a new sequence.
|
void |
dropSequence(java.lang.String sequenceName)
Drop a sequence.
|
void |
getSequenceInfo(java.lang.String sequenceName,
int[] currentValue,
int[] incrementValue,
int[] startValue)
Get the current value and increment value in a sequence.
|
IEnumSequence |
getSequences()
The sequences in the database.
|
int |
nextSequenceValue(java.lang.String sequenceName)
Get the next value in a sequence.
|
void |
restartSequence(java.lang.String sequenceName,
int startValue,
int incrementValue)
Restart a sequence.
|
boolean |
sequenceExists(java.lang.String sequenceName)
Check the existence of a sequence.
|
static final int IIDbe61a3ae_26c6_4302_b226_93e33219d46c
static final int xxDummy
static final java.lang.String IID
void createSequence(java.lang.String sequenceName, int startValue, int incrementValue) throws java.io.IOException, AutomationException
sequenceName
- The sequenceName (in)startValue
- The startValue (in)incrementValue
- The incrementValue (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.int nextSequenceValue(java.lang.String sequenceName) throws java.io.IOException, AutomationException
sequenceName
- The sequenceName (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void restartSequence(java.lang.String sequenceName, int startValue, int incrementValue) throws java.io.IOException, AutomationException
sequenceName
- The sequenceName (in)startValue
- The startValue (in)incrementValue
- The incrementValue (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void dropSequence(java.lang.String sequenceName) throws java.io.IOException, AutomationException
sequenceName
- The sequenceName (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.boolean sequenceExists(java.lang.String sequenceName) throws java.io.IOException, AutomationException
sequenceName
- The sequenceName (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.IEnumSequence getSequences() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void getSequenceInfo(java.lang.String sequenceName, int[] currentValue, int[] incrementValue, int[] startValue) throws java.io.IOException, AutomationException
sequenceName
- The sequenceName (in)currentValue
- The currentValue (out: use single element array)incrementValue
- The incrementValue (out: use single element array)startValue
- The startValue (out: use single element array)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.