Uses of Class
org.apache.uima.cas.CASRuntimeException
Packages that use CASRuntimeException
Package
Description
Common Analysis System (CAS) Interfaces.
Implementation and Low-Level API for the CAS Interfaces.
Text Common Annotation System (TCAS) Interfaces.
Interfaces for accessing the JCAS.
Provides the classes that support the Java Cas Model (JCM).
-
Uses of CASRuntimeException in org.apache.uima.cas
Methods in org.apache.uima.cas that throw CASRuntimeExceptionModifier and TypeMethodDescriptionFeatureStructure.clone()
Creates a copy of this feature structure.CAS.createArrayFS
(int length) Create a new feature structure array.CAS.createBooleanArrayFS
(int length) Create a new Boolean array.CAS.createByteArrayFS
(int length) Create a new Byte array.CAS.createDoubleArrayFS
(int length) Create a new Double array.CAS.createFeatureValuePath
(String featureValuePath) Create a feature-value path from a string.CAS.createFloatArrayFS
(int length) Create a new int array.<T extends FeatureStructure>
TCreate a new FeatureStructure.CAS.createIntArrayFS
(int length) Create a new int array.CAS.createLongArrayFS
(int length) Create a new Long array.CAS.createShortArrayFS
(int length) Create a new Short array.CAS.createStringArrayFS
(int length) Create a new String array.<T extends AnnotationFS>
AnnotationIndex<T>CAS.getAnnotationIndex
(Type type) Get the standard annotation index restricted to a specific annotation type.boolean
FeatureStructure.getBooleanValue
(Feature feat) Get the boolean value of a feature.byte
FeatureStructure.getByteValue
(Feature feat) Get the byte value of a feature.double
FeatureStructure.getDoubleValue
(Feature feat) Get the double value of a feature.FeatureStructure.getFeatureValue
(Feature feat) Get a feature value.FeatureStructure.getFeatureValueAsString
(Feature feat) Get the value of the feature as a string if the type of the feature is one of the primitive type.float
FeatureStructure.getFloatValue
(Feature feat) Get the float value of a feature.<T extends FeatureStructure>
FSIndex<T>Retrieve an index according to a label and a type.int
FeatureStructure.getIntValue
(Feature feat) Get the int value of a feature.long
FeatureStructure.getLongValue
(Feature feat) Get the long value of a feature.short
FeatureStructure.getShortValue
(Feature feat) Get the short value of a feature.FeatureStructure.getStringValue
(Feature f) Get the string value under a feature.CAS.getTypeSystem()
Return the type system of this CAS instance.void
FeatureStructure.setBooleanValue
(Feature feat, boolean i) Set the boolean value of a feature.void
FeatureStructure.setByteValue
(Feature feat, byte i) Set the byte (8 bit) value of a feature.void
CAS.setDocumentLanguage
(String languageCode) Sets the language for this document.void
CAS.setDocumentText
(String text) Set the document text.void
FeatureStructure.setDoubleValue
(Feature feat, double i) Set the double value of a feature.void
FeatureStructure.setFeatureValue
(Feature feat, FeatureStructure fs) Set a feature value to another FS.void
FeatureStructure.setFeatureValueFromString
(Feature feat, String s) Sets the value of a feature from a string input if the feature type is one of the primitive types.void
FeatureStructure.setFloatValue
(Feature feat, float f) Set the float value of a feature.void
FeatureStructure.setIntValue
(Feature feat, int i) Set the int value of a feature.void
SofaFS.setLocalSofaData
(String aString) Set the Local Subject of Analysis to be a String.void
SofaFS.setLocalSofaData
(FeatureStructure aFS) Set the Local Subject of Analysis to be a predefined ArrayFS.void
FeatureStructure.setLongValue
(Feature feat, long i) Set the long (64 bit) value of a feature.void
SofaFS.setRemoteSofaURI
(String aURI) Set the URI for a Remote Subject of Analysis.void
FeatureStructure.setShortValue
(Feature feat, short i) Set the short (16 bit) value of a feature.void
CAS.setSofaDataArray
(FeatureStructure array, String mime) Set the Sofa data as an ArrayFS.void
CAS.setSofaDataString
(String text, String mimetype) Set the document text.void
CAS.setSofaDataURI
(String uri, String mime) Set the Sofa data as a URI.void
FeatureStructure.setStringValue
(Feature feat, String s) Set the string value of a feature.void
FeatureValuePath.typeSystemInit
(int fsType, LowLevelTypeSystem ts) Deprecated. -
Uses of CASRuntimeException in org.apache.uima.cas.impl
Methods in org.apache.uima.cas.impl that throw CASRuntimeExceptionModifier and TypeMethodDescriptionfinal void
CASImpl.checkArrayPreconditions
(int len) FeatureStructureImpl.clone()
(package private) void
CASImpl.copyFeatures
(int trgAddr, int srcAddr) CASImpl.createBooleanArrayFS
(int length) CASImpl.createByteArrayFS
(int length) CASImpl.createDoubleArrayFS
(int length) CASImpl.createFeatureValuePath
(String featureValuePath) CASImpl.createLongArrayFS
(int length) CASImpl.createShortArrayFS
(int length) private final void
FeatureValuePathImpl.determineArray()
Checks whether the feature snippet denotes array access (i.e., has [..] attached to it).boolean
FeatureStructureImpl.getBooleanValue
(Feature feat) byte
FeatureStructureImpl.getByteValue
(Feature feat) AnnotationTreeNodeImpl.getChild
(int i) double
FeatureStructureImpl.getDoubleValue
(Feature feat) static FeatureValuePathImpl
FeatureValuePathImpl.getFeaturePath
(String featurePath) FeatureStructureImpl.getFeatureValue
(Feature feat) FeatureStructureImpl.getFeatureValueAsString
(Feature feat) float
FeatureStructureImpl.getFloatValue
(Feature feat) long
FeatureStructureImpl.getLongValue
(Feature feat) short
FeatureStructureImpl.getShortValue
(Feature feat) FeatureStructureImpl.getStringValue
(Feature f) CASImpl.reinit
(InputStream istream) --------------------------------------------------------------------- see Blob Format in CASSerializer This reads in and deserializes CAS data from a stream.void
FeatureStructureImpl.setBooleanValue
(Feature feat, boolean b) void
FeatureStructureImpl.setByteValue
(Feature feat, byte val) void
FeatureStructureImpl.setDoubleValue
(Feature feat, double val) void
FeatureStructureImpl.setFeatureValueFromString
(Feature feat, String s) void
FeatureStructureImpl.setLongValue
(Feature feat, long val) void
FeatureStructureImpl.setShortValue
(Feature feat, short val) void
CASImpl.setSofaDataArray
(FeatureStructure array, String mime) void
CASImpl.setSofaDataString
(String text, String mime) void
CASImpl.setSofaDataURI
(String uri, String mime) private static final void
FeatureStructureImpl.throwIllegalRangeExc
(Feature f, Type t) private static final void
FeatureStructureImpl.throwUndefinedFeatureExc
(Feature f, Type t) void
FeatureValuePathImpl.typeSystemInit
(int fsType, LowLevelTypeSystem ts) Constructors in org.apache.uima.cas.impl that throw CASRuntimeExceptionModifierConstructorDescriptionprivate
FeatureValuePathImpl
(String pathSnippet, FeatureValuePathImpl child) -
Uses of CASRuntimeException in org.apache.uima.cas.text
Methods in org.apache.uima.cas.text that throw CASRuntimeExceptionModifier and TypeMethodDescriptionAnnotationTreeNode.getChild
(int i) Get the i-th child of this node. -
Uses of CASRuntimeException in org.apache.uima.jcas
Methods in org.apache.uima.jcas that throw CASRuntimeExceptionModifier and TypeMethodDescriptionJCas.createFeatureValuePath
(String featureValuePath) Create a feature-value path from a string.<T extends Annotation>
AnnotationIndex<T>JCas.getAnnotationIndex
(int type) Get the standard annotation index restricted to a specific annotation type.<T extends Annotation>
AnnotationIndex<T>JCas.getAnnotationIndex
(Class<T> clazz) Get the standard annotation index restricted to a specific annotation type.<T extends Annotation>
AnnotationIndex<T>JCas.getAnnotationIndex
(Type type) Get the standard annotation index restricted to a specific annotation type.JCas.getTypeSystem()
Return the type system of this CAS instance.void
JCas.setDocumentLanguage
(String languageCode) Sets the language for this document.void
JCas.setDocumentText
(String text) Set the document text.void
JCas.setSofaDataArray
(FeatureStructure array, String mime) Set the Sofa data as an ArrayFS.void
JCas.setSofaDataString
(String text, String mimetype) Set the document text.void
JCas.setSofaDataURI
(String uri, String mime) Set the Sofa data as a URI. -
Uses of CASRuntimeException in org.apache.uima.jcas.impl
Methods in org.apache.uima.jcas.impl that throw CASRuntimeExceptionModifier and TypeMethodDescriptionJCasImpl.createFeatureValuePath
(String featureValuePath) <T extends Annotation>
AnnotationIndex<T>JCasImpl.getAnnotationIndex
(int type) <T extends Annotation>
AnnotationIndex<T>JCasImpl.getAnnotationIndex
(Type type) void
JCasImpl.setDocumentLanguage
(String language) void
JCasImpl.setDocumentText
(String text) void
JCasImpl.setSofaDataArray
(FeatureStructure array, String mime) void
JCasImpl.setSofaDataString
(String text, String mime) void
JCasImpl.setSofaDataURI
(String uri, String mime)