Uses of Class
java.lang.IllegalStateException
| Package | Description |
|---|---|
| java.nio | |
| java.nio.channels | |
| java.util | |
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
| java.util.regex | |
| javax.crypto |
This package provides the classes and interfaces for cryptographic applications implementing algorithms for encryption, decryption, or
key agreement.
|
| org.apache.http |
The core interfaces and classes of the HTTP components.
|
| org.apache.http.auth |
The API for client-side HTTP authentication against a server,
commonly referred to as HttpAuth.
|
| org.apache.http.cookie |
The API for client-side state management via cookies,
commonly referred to as HttpCookie.
|
| org.apache.http.entity |
Representations for HTTP message entities.
|
| org.apache.http.impl |
Default implementations for interfaces in
org.apache.http. |
| org.apache.http.impl.conn | |
| org.apache.http.impl.conn.tsccm |
The implementation of a thread-safe client connection manager.
|
| org.bouncycastle.asn1 | |
| org.bouncycastle.crypto | |
| org.bouncycastle.crypto.modes | |
| org.bouncycastle.crypto.paddings | |
| org.bouncycastle.jcajce.provider.asymmetric.dh | |
| org.bouncycastle.jcajce.provider.asymmetric.ec | |
| org.bouncycastle.util.encoders | |
| org.bouncycastle.x509 | |
| org.xmlpull.v1 |
-
Uses of IllegalStateException in java.nio
Subclasses of IllegalStateException in java.nio Modifier and Type Class Description classInvalidMarkExceptionAnInvalidMarkExceptionis thrown whenreset()is called on a buffer, but no mark has been set previously. -
Uses of IllegalStateException in java.nio.channels
Subclasses of IllegalStateException in java.nio.channels Modifier and Type Class Description classAlreadyConnectedExceptionAnAlreadyConnectedExceptionis thrown when an attempt is made to connect a SocketChannel that is already connected.classCancelledKeyExceptionACancelledKeyExceptionis thrown when an invalid selection key is used.classClosedSelectorExceptionAClosedSelectorExceptionis thrown when aselectoris closed and an I/O operation is attempted.classConnectionPendingExceptionAConnectionPendingExceptionis thrown when an attempt is made to connect aSocketChannelthat has a non-blocking connection already underway.classIllegalBlockingModeExceptionAnIllegalBlockingModeExceptionis thrown when an operation that requires a specific blocking mode is invoked on a channel that is in a different blocking mode.classNoConnectionPendingExceptionANoConnectionPendingExceptionis thrown ifSocketChannel'sfinishConnectmethod is called before theSocketChannel'sSocketChannel.connect(java.net.SocketAddress)connect} method completed without error.classNonReadableChannelExceptionANonReadableChannelExceptionis thrown when attempting to read from a channel that is not open for reading.classNonWritableChannelExceptionANonWritableChannelExceptionis thrown when attempting to write to a channel that is not open for writing.classNotYetBoundExceptionANotYetBoundExceptionis thrown if the server socket channel is not bound before an I/O operation is made.classNotYetConnectedExceptionANotYetConnectedExceptionis thrown if the socket channel is not connected before an I/O operation is invoked.classOverlappingFileLockExceptionAnOverlappingFileLockExceptionis thrown when attempting to acquire a lock that overlaps an existing or pending lock held by this process. -
Uses of IllegalStateException in java.util
Subclasses of IllegalStateException in java.util Modifier and Type Class Description classFormatterClosedExceptionAFormatterClosedExceptionwill be thrown if the formatter has been closed. -
Uses of IllegalStateException in java.util.concurrent
Subclasses of IllegalStateException in java.util.concurrent Modifier and Type Class Description classCancellationExceptionException indicating that the result of a value-producing task, such as aFutureTask, cannot be retrieved because the task was cancelled. -
Uses of IllegalStateException in java.util.regex
Methods in java.util.regex that throw IllegalStateException Modifier and Type Method Description intMatcher. start(int group)Returns the index of the first character of the text that matched a given group. -
Uses of IllegalStateException in javax.crypto
Methods in javax.crypto that throw IllegalStateException Modifier and Type Method Description byte[]Mac. doFinal()Computes the digest of this MAC based on the data previously specified inMac.update(byte)calls.byte[]Mac. doFinal(byte[] input)Computes the digest of this MAC based on the data previously specified onMac.update(byte)calls and on the final bytes specified byinput(or based on those bytes only).voidMac. doFinal(byte[] output, int outOffset)Computes the digest of this MAC based on the data previously specified inMac.update(byte)calls and stores the digest in the specifiedoutputbuffer at offsetoutOffset.KeyKeyAgreement. doPhase(Key key, boolean lastPhase)Does the next (or the last) phase of the key agreement, using the specified key.protected abstract KeyKeyAgreementSpi. engineDoPhase(Key key, boolean lastPhase)Does the next (or the last) phase of the key agreement, using the specified key.protected abstract byte[]KeyAgreementSpi. engineGenerateSecret()Generates the shared secret.protected abstract intKeyAgreementSpi. engineGenerateSecret(byte[] sharedSecret, int offset)Generates the shared secret and stores it into the buffersharedSecredatoffset.protected abstract SecretKeyKeyAgreementSpi. engineGenerateSecret(String algorithm)Generates the shared secret.byte[]KeyAgreement. generateSecret()Generates the shared secret.intKeyAgreement. generateSecret(byte[] sharedSecret, int offset)Generates the shared secret and stores it into the buffersharedSecredatoffset.SecretKeyKeyAgreement. generateSecret(String algorithm)Generates the shared secret.byte[]ExemptionMechanism. genExemptionBlob()Generates the result key blob for this exemption mechanism.intExemptionMechanism. genExemptionBlob(byte[] output)Generates the result key blob for this exemption mechanism and stores it into theoutputbuffer.intExemptionMechanism. genExemptionBlob(byte[] output, int outputOffset)Generates the result key blob for this exemption mechanism and stores it into theoutputbuffer at offsetoutputOffset.intExemptionMechanism. getOutputSize(int inputLen)Returns the size in bytes for the output buffer needed to hold the output of the nextExemptionMechanism.genExemptionBlob()call, given the specifiedinputLen(in bytes).voidMac. update(byte input)Updates thisMacinstance with the specified byte.voidMac. update(byte[] input)Copies the buffer provided as input for further processing.voidMac. update(byte[] input, int offset, int len)Updates thisMacinstance with the data from the specified bufferinputfrom the specifiedoffsetand lengthlen. -
Uses of IllegalStateException in org.apache.http
Methods in org.apache.http that throw IllegalStateException Modifier and Type Method Description InputStreamHttpEntity. getContent()Creates a new InputStream object of the entity.voidHttpResponse. setReasonPhrase(String reason)Updates the status line of this response with a new reason phrase.voidHttpResponse. setStatusCode(int code)Updates the status line of this response with a new status code. -
Uses of IllegalStateException in org.apache.http.auth
Methods in org.apache.http.auth that throw IllegalStateException Modifier and Type Method Description AuthSchemeAuthSchemeRegistry. getAuthScheme(String name, HttpParams params)Gets theauthentication schemewith the given name. -
Uses of IllegalStateException in org.apache.http.cookie
Methods in org.apache.http.cookie that throw IllegalStateException Modifier and Type Method Description CookieSpecCookieSpecRegistry. getCookieSpec(String name)Gets thecookie specificationwith the given name.CookieSpecCookieSpecRegistry. getCookieSpec(String name, HttpParams params)Gets thecookie specificationwith the given ID. -
Uses of IllegalStateException in org.apache.http.entity
Methods in org.apache.http.entity that throw IllegalStateException Modifier and Type Method Description InputStreamBasicHttpEntity. getContent()Obtains the content, once only.InputStreamSerializableEntity. getContent() -
Uses of IllegalStateException in org.apache.http.impl
Methods in org.apache.http.impl that throw IllegalStateException Modifier and Type Method Description protected abstract voidAbstractHttpClientConnection. assertOpen()protected abstract voidAbstractHttpServerConnection. assertOpen() -
Uses of IllegalStateException in org.apache.http.impl.conn
Methods in org.apache.http.impl.conn that throw IllegalStateException Modifier and Type Method Description protected voidSingleClientConnManager. assertStillUp()Asserts that this manager is not shut down. -
Uses of IllegalStateException in org.apache.http.impl.conn.tsccm
Methods in org.apache.http.impl.conn.tsccm that throw IllegalStateException Modifier and Type Method Description voidAbstractConnPool. enableConnectionGC()Enables connection garbage collection (GC). -
Uses of IllegalStateException in org.bouncycastle.asn1
Subclasses of IllegalStateException in org.bouncycastle.asn1 Modifier and Type Class Description classASN1ParsingException -
Uses of IllegalStateException in org.bouncycastle.crypto
Methods in org.bouncycastle.crypto that throw IllegalStateException Modifier and Type Method Description intBufferedBlockCipher. doFinal(byte[] out, int outOff)Process the last block in the buffer.intMac. doFinal(byte[] out, int outOff)Compute the final stage of the MAC writing the output to the out parameter.intBlockCipher. processBlock(byte[] in, int inOff, byte[] out, int outOff)Process one block of input from the array in and write it to the out array.intBufferedBlockCipher. processByte(byte in, byte[] out, int outOff)process a single byte, producing an output block if neccessary.intBufferedBlockCipher. processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)process an array of bytes, producing output if necessary.voidMac. update(byte in)add a single byte to the mac for processing.voidMac. update(byte[] in, int inOff, int len) -
Uses of IllegalStateException in org.bouncycastle.crypto.modes
Methods in org.bouncycastle.crypto.modes that throw IllegalStateException Modifier and Type Method Description intCFBBlockCipher. decryptBlock(byte[] in, int inOff, byte[] out, int outOff)Do the appropriate processing for CFB mode decryption.intAEADBlockCipher. doFinal(byte[] out, int outOff)Finish the operation either appending or verifying the MAC at the end of the data.intCCMBlockCipher. doFinal(byte[] out, int outOff)intCTSBlockCipher. doFinal(byte[] out, int outOff)Process the last block in the buffer.intGCMBlockCipher. doFinal(byte[] out, int outOff)intCFBBlockCipher. encryptBlock(byte[] in, int inOff, byte[] out, int outOff)Do the appropriate processing for CFB mode encryption.intCBCBlockCipher. processBlock(byte[] in, int inOff, byte[] out, int outOff)Process one block of input from the array in and write it to the out array.intCFBBlockCipher. processBlock(byte[] in, int inOff, byte[] out, int outOff)Process one block of input from the array in and write it to the out array.intOFBBlockCipher. processBlock(byte[] in, int inOff, byte[] out, int outOff)Process one block of input from the array in and write it to the out array.intSICBlockCipher. processBlock(byte[] in, int inOff, byte[] out, int outOff)intCCMBlockCipher. processByte(byte in, byte[] out, int outOff)intCTSBlockCipher. processByte(byte in, byte[] out, int outOff)process a single byte, producing an output block if neccessary.intCCMBlockCipher. processBytes(byte[] in, int inOff, int inLen, byte[] out, int outOff)intCTSBlockCipher. processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)process an array of bytes, producing output if necessary.byte[]CCMBlockCipher. processPacket(byte[] in, int inOff, int inLen) -
Uses of IllegalStateException in org.bouncycastle.crypto.paddings
Methods in org.bouncycastle.crypto.paddings that throw IllegalStateException Modifier and Type Method Description intPaddedBufferedBlockCipher. doFinal(byte[] out, int outOff)Process the last block in the buffer.intPaddedBufferedBlockCipher. processByte(byte in, byte[] out, int outOff)process a single byte, producing an output block if neccessary.intPaddedBufferedBlockCipher. processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)process an array of bytes, producing output if necessary. -
Uses of IllegalStateException in org.bouncycastle.jcajce.provider.asymmetric.dh
Methods in org.bouncycastle.jcajce.provider.asymmetric.dh that throw IllegalStateException Modifier and Type Method Description protected KeyKeyAgreementSpi. engineDoPhase(Key key, boolean lastPhase)protected byte[]KeyAgreementSpi. engineGenerateSecret()protected intKeyAgreementSpi. engineGenerateSecret(byte[] sharedSecret, int offset) -
Uses of IllegalStateException in org.bouncycastle.jcajce.provider.asymmetric.ec
Methods in org.bouncycastle.jcajce.provider.asymmetric.ec that throw IllegalStateException Modifier and Type Method Description protected KeyKeyAgreementSpi. engineDoPhase(Key key, boolean lastPhase)protected byte[]KeyAgreementSpi. engineGenerateSecret()protected intKeyAgreementSpi. engineGenerateSecret(byte[] sharedSecret, int offset) -
Uses of IllegalStateException in org.bouncycastle.util.encoders
Subclasses of IllegalStateException in org.bouncycastle.util.encoders Modifier and Type Class Description classDecoderExceptionclassEncoderException -
Uses of IllegalStateException in org.bouncycastle.x509
Methods in org.bouncycastle.x509 that throw IllegalStateException Modifier and Type Method Description X509CertificateX509V1CertificateGenerator. generate(PrivateKey key)Deprecated.generate an X509 certificate, based on the current issuer and subject using the default provider.X509CertificateX509V1CertificateGenerator. generate(PrivateKey key, String provider)Deprecated.generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing, and the passed in source of randomness (if required).X509CertificateX509V1CertificateGenerator. generate(PrivateKey key, String provider, SecureRandom random)Deprecated.generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing, and the passed in source of randomness (if required).X509CertificateX509V1CertificateGenerator. generate(PrivateKey key, SecureRandom random)Deprecated.generate an X509 certificate, based on the current issuer and subject using the default provider and the passed in source of randomnessX509CertificateX509V3CertificateGenerator. generate(PrivateKey key)Deprecated.generate an X509 certificate, based on the current issuer and subject using the default provider.X509CertificateX509V3CertificateGenerator. generate(PrivateKey key, String provider)Deprecated.generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing.X509CertificateX509V3CertificateGenerator. generate(PrivateKey key, String provider, SecureRandom random)Deprecated.generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing and the supplied source of randomness, if required.X509CertificateX509V3CertificateGenerator. generate(PrivateKey key, SecureRandom random)Deprecated.generate an X509 certificate, based on the current issuer and subject using the default provider, and the passed in source of randomness (if required). -
Uses of IllegalStateException in org.xmlpull.v1
Methods in org.xmlpull.v1 that throw IllegalStateException Modifier and Type Method Description XmlSerializerXmlSerializer. attribute(String namespace, String name, String value)Write an attribute.voidXmlSerializer. cdsect(String text)voidXmlSerializer. comment(String text)voidXmlSerializer. docdecl(String text)voidXmlSerializer. endDocument()Finish writing.XmlSerializerXmlSerializer. endTag(String namespace, String name)Write end tag.voidXmlSerializer. entityRef(String text)voidXmlSerializer. ignorableWhitespace(String text)voidXmlSerializer. processingInstruction(String text)voidXmlSerializer. setFeature(String name, boolean state)Set feature identified by name (recommended to be URI for uniqueness).voidXmlSerializer. setOutput(OutputStream os, String encoding)Set to use binary output stream with given encoding.voidXmlSerializer. setOutput(Writer writer)Set the output to the given writer.voidXmlSerializer. setPrefix(String prefix, String namespace)Binds the given prefix to the given namespace.voidXmlSerializer. setProperty(String name, Object value)Set the value of a property.voidXmlSerializer. startDocument(String encoding, Boolean standalone)Write <?xml declaration with encoding (if encoding not null) and standalone flag (if standalone not null) This method can only be called just after setOutput.XmlSerializerXmlSerializer. startTag(String namespace, String name)Writes a start tag with the given namespace and name.XmlSerializerXmlSerializer. text(char[] buf, int start, int len)Writes text, where special XML chars are escaped automaticallyXmlSerializerXmlSerializer. text(String text)Writes text, where special XML chars are escaped automatically