|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.opensourcephysics.numerics.DoubleArray
public class DoubleArray
DoubleArray stores an array of doubles as a string and as an array.
Field Summary | |
---|---|
protected double[] |
array
|
static int |
ArrayIndexOutOfBoundsError
|
protected double[] |
defaultArray
|
protected java.lang.String |
defaultString
|
protected int |
errorcode
|
protected java.text.DecimalFormat |
format
|
protected java.text.DecimalFormat |
formatExp
|
static int |
NumberFormatError
|
Constructor Summary | |
---|---|
DoubleArray(double[] array)
Creates a DoubleArray of the given length with all elements set to zero. |
|
DoubleArray(int n)
Creates a DoubleArray of the given length with all elements set to zero. |
|
DoubleArray(java.lang.String str)
Creates an arry with the given string being the default string. |
Method Summary | |
---|---|
double[] |
getArray()
Gets the array of doubles. |
double[] |
getArray(java.lang.String str)
Converts the string to an array and returns the array. |
java.lang.String |
getDefault()
Gets the default array. |
int |
getError()
Gets the error code |
static XML.ObjectLoader |
getLoader()
Returns an XML.ObjectLoader to save and load object data. |
boolean |
set(java.lang.String str)
Sets the array to the given string. |
void |
setDecimalFormat(java.lang.String pattern)
Creates a DecimalFormat for printing array elements using the given pattern and the symbols for the default locale. |
void |
setDefaultArray(double[] array)
|
protected double[] |
toDouble(java.lang.String str)
Converts a comma delimited string enclosed in braces to an array. |
java.lang.String |
toString()
Converts the array to a comma delimited string enclosed in braces. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static int NumberFormatError
public static int ArrayIndexOutOfBoundsError
protected java.text.DecimalFormat format
protected java.text.DecimalFormat formatExp
protected double[] array
protected java.lang.String defaultString
protected double[] defaultArray
protected int errorcode
Constructor Detail |
---|
public DoubleArray(int n)
n
- public DoubleArray(double[] array)
array
- public DoubleArray(java.lang.String str) throws java.lang.NumberFormatException
str
-
java.lang.NumberFormatException
Method Detail |
---|
public void setDecimalFormat(java.lang.String pattern)
DecimalFormat
public java.lang.String getDefault()
public java.lang.String toString()
toString
in class java.lang.Object
public int getError()
public double[] getArray(java.lang.String str)
public double[] getArray()
public boolean set(java.lang.String str)
public void setDefaultArray(double[] array)
protected double[] toDouble(java.lang.String str) throws java.lang.ArrayIndexOutOfBoundsException
str
-
java.lang.ArrayIndexOutOfBoundsException
public static XML.ObjectLoader getLoader()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |