blob: b67ecea706c538f18e539056a4f454927d85071b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.cas;
/**
* Interface for CAS float arrays. To create a float array object, use
* {@link org.apache.uima.cas.CAS#createFloatArrayFS CAS.createFloatArrayFS()}
* or new FloatArray(aJCas, length)
*
*
*/
public interface FloatArrayFS extends CommonArrayFS<Float> {
/**
* Get the element at position <code>index</code>.
* @param index the index
* @return The element.
* @exception ArrayIndexOutOfBoundsException
* If <code>index</code> is out of bounds.
*/
float get(int index);
/**
* Set a given element.
*
* @param index
* The index.
* @param value
* The value.
* @exception ArrayIndexOutOfBoundsException
* If <code>index</code> is out of bounds.
*/
void set(int index, float value) throws ArrayIndexOutOfBoundsException;
/**
* Copy the contents of the array to an external array.
*
* @param srcOffset
* The index of the first element to copy.
* @param dest
* The array to copy to.
* @param destOffset
* Where to start copying into <code>dest</code>.
* @param length
* The number of elements to copy.
* @exception ArrayIndexOutOfBoundsException
* If <code>srcOffset &lt; 0</code> or <code>length &gt; size()</code> or
* <code>destOffset + length &gt; destArray.length</code>.
*/
void copyToArray(int srcOffset, float[] dest, int destOffset, int length)
throws ArrayIndexOutOfBoundsException;
/**
* Copy the contents of an external array into this array.
*
* @param src
* The source array.
* @param srcOffset
* Where to start copying in the source array.
* @param destOffset
* Where to start copying to in the destination array.
* @param length
* The number of elements to copy.
*/
void copyFromArray(float[] src, int srcOffset, int destOffset, int length)
throws ArrayIndexOutOfBoundsException;
/**
* Create a Java array that is a copy of the internal CAS array.
*
* @return An array copy.
*/
float[] toArray();
}