... public class MultiArrayImpl . ... MultiArrayImpl (java.lang.Class componentType, int[] dimensions) . ... set (int[] index, java.lang.Object value) . Set (modify, write) the array element at index to the specified value. void . ... Set the array element at index to the specified boolean value. void . ... Set the array element at index to the specified int value. void . ... Get the array element at index, as an int. Specified by: . ... Set the array element at index to the specified int value. ...
... Class . ... public interface MultiArrayInfo . Inquiry or introspection interface for abstract multidimensional arrays. ... Returns the Class object representing the component type of the array. int[] . ... Discover the dimensions of this MultiArray. int . ... Returns the number of dimensions of the array. boolean . ... Returns the number of dimensions of the array. ... int array whose length is the rank of this MultiArray and whose elements represent the length of each of it's dimensions . ...
... set (int[] index, java.lang.Object value) . ... Set the array element at index to the specified boolean value. void . ... Set the array element at index to the specified byte value. void . ... Set the array element at index to the specified char value. void . ... Set the array element at index to the specified double value. void . ... setInt (int[] index, int value) . Set the array element at index to the specified int value. void . ... Set the array element at index to the specified int value. ...
... Index . ... Get (read) the array element at index. boolean . ... Set (modify, write) the array element at index to the specified value. void . ... Set the array element at index to the specified boolean value. void . ... Set the array element at index to the specified byte value. void . ... Set the array element at index to the specified char value. void . ... Set the array element at index to the specified int value. void . ... Set the array element at index to the specified int value. ...
... Class . ... public class ScalarMultiArray . ... Construct a new ScalarMultiArray with the specified component type. ScalarMultiArray (java.lang.Class theComponentType, java.lang.Object value) . ... set (int[] index, java.lang.Object value) . ... public ScalarMultiArray (java.lang.Class theComponentType, java.lang.Object value) . ... public ScalarMultiArray (java.lang.Object value) . ... public void set (int[] index, java.lang.Object value) . ... public void setInt (int[] index, int value) . ...
... Use with MultiArrayProxy to reduce the apparent rank of the delegate by fixing an index at particular value. ... SliceMap ( ConcreteIndexMap prev, int position, int value) . Create an ConcreteIndexMap which fixes the key for a particular dimension at a particular value and is functionally composed with another ConcreteIndexMap. ... position - the dimension number on which to fix the key. value - the value at which to fix the key. public SliceMap ( ConcreteIndexMap prev, int position, int value) . ...
... set (int[] index, java.lang.Object value) . ... Set the array element at index to the specified boolean value. void . ... Set the array element at index to the specified byte value. void . ... Set the array element at index to the specified char value. void . ... Set the array element at index to the specified double value. void . ... setInt (int[] index, int value) . Set the array element at index to the specified int value. void . ... Set the array element at index to the specified int value. ...
... Class . ... PREV CLASS NEXT CLASS . ... CONSTR | METHOD . ... ucar.multiarray.ConcreteIndexMap | ucar.multiarray.TransposeMap . ... IndexMap . ... Use with MultiArrayProxy to transpose two dimensions. ... ConcreteIndexMap . ... TransposeMap ( ConcreteIndexMap prev, int aa, int bb) . Create an IndexMap which swaps two dimensions. ... public TransposeMap ( ConcreteIndexMap prev, int aa, int bb) . ... prev - IndexMap to be composed with this. aa - specifies one of the dimensions to swap . ...
... Class . ... Provides an abstraction for multidimensional array access, some concrete implementations, and ways to view a MultiArray as if it had a different structure. ... This interface defines the services required by MultiArrayProxy to manipulate indexes and the dimensions of a MultiArray. ... In the following, we use the unadorned term "array" to mean the Java language construct, and the term "multidimensional array" for the mathematical abstraction modeled by the MultiArray class in this...
... ucar.netcdf.AbstractNetcdf . ... public abstract class AbstractNetcdf . ... Create an empty instance to be populated with instances of some subclass of Variable. protected . ... Returns the set of attributes associated with this, also know as the "global" attributes. ... Returns the set of dimensions associated with this, the union of those used by each of the variables. protected void . ... Returns the set of dimensions associated with this, the union of those used by each of the variables. ...
... public class Attribute . ... They have a name, type and an array of values. ... Attribute (java.lang.String name, double value) . ... If the value represents an array type, returns the Class object representing the component type of the array; otherwise returns null. int . ... Constructor Detail public Attribute (java.lang.String name, java.lang.Number value) . ... public Attribute (java.lang.String name, double value) . ... public Attribute (java.lang.String name, java.lang.Object theValue) . ...
... Class . ... PREV CLASS NEXT CLASS . FRAMES NO FRAMES . ... FIELD | CONSTR | METHOD . DETAIL: FIELD | ... public interface AttributeIterator . ... Use the Iterator methods to fetch elements sequentially. ... Method Summary . ... Returns true if there are more elements. ... next () . Returns the next element. ... Returns true if there are more elements. public Attribute next () . ... Calls to this method will step through successive elements. ...
... METHOD . ... public interface AttributeSet . AttributeSet is an inquiry interface for a collection of Attributes. ... Tests if the Attribute identified by name is in this set. ... Retrieve the attribute associated with the specified name. ... Returns AttributeIterator for the elements. ... a new Array containing the elements of this set. public Attribute get (java.lang.String name) . ... If a different Attribute with the same name, was in the set, it is returned, otherwise null is returned. ...
... Class . ... FIELD | ... java.lang.Object | ucar.netcdf.Dimension . ... public class Dimension . ... A Dimension object is used to contain an array length which is named for use in multiple netcdf variables. This class supports construction, retrieval of the name and retrieval of the length value. ... protected int . ... Dimension (java.lang.String name, int length) . ... Constructor Detail public Dimension (java.lang.String name, int length) . ... length - int length of this Dimension . ...
... Class . ... PREV CLASS NEXT CLASS . FRAMES NO FRAMES . ... FIELD | CONSTR | METHOD . DETAIL: FIELD | ... public interface DimensionIterator . ... Use the Iterator methods to fetch elements sequentially. ... Method Summary . ... Returns true if there are more elements. ... next () . Returns the next element. ... Returns true if there are more elements. public Dimension next () . ... Calls to this method will step through successive elements. ...
... Class . ... public interface DimensionSet . DimensionSet is an inquiry interface for a collection of Dimensions. ... Returns DimensionIterator for the elements. int . ... Returns the number of elements in the set . ... Returns a new Array containing the elements of this set. ... Returns: . ... a new Array containing the elements of this set. public Dimension get (java.lang.String name) . ... true if and only if this set contains the named Dimension. public boolean contains (java.lang.Object oo) . ...
... public interface Netcdf . ... A Netcdf is seen as a set of Variables, the DimensionSet which is the union of the Dimensions used by the Variables, and any global Attributes. ... Variable . ... Returns the set of attributes associated with this, also know as the "global" attributes. ... Returns the set of dimensions associated with this, the union of those used by each of the variables. ... true if and only if this set contains the named variable. public boolean contains (java.lang.Object oo) . ...