Computes distance (in km), azimuth (degrees clockwise positive
from North, 0 to 360), and back azimuth (degrees clockwise positive
from North, 0 to 360), from latitude-longituide point pt1 to
latitude-longituide pt2.
copy array a to array result as bytes
The values from the array a are converted to byte (if needed),
and then converted to the type of result (if needed).
copy array a to array result as char
The values from the array a are converted to char (if needed),
and then converted to the type of result (if needed).
copy array a to array result as doubles
The values from the arrays a are converted to double (if needed),
and then converted to the type of result (if needed).
copy array a to array result as floats
The values from the arrays a are converted to float (if needed),
and then converted to the type of result (if needed).
copy array a to array result as integers
The values from the arrays a are converted to integer (if needed),
and then converted to the type of result (if needed).
copy array a to array result as longs
The values from the array a are converted to long (if needed),
and then converted to the type of result (if needed).
copy array a to array result as shorts
The values from the array a are converted to short (if needed),
and then converted to the type of result (if needed).
Parse the given date string (starting at the given startIndex) using the
given date format string (as described in java.text.SimpleDateFormat) and
return a Date.
Parse the given date string (between the demarcation characters)
using the given date format string (as described in
java.text.SimpleDateFormat) and return a Date.
Use regular expression capture group replacement to construct a date
string and return the Date that is obtained by parseing the constructed
date string using the date format string "yyyy-MM-dd'T'HH:mm".
Parse the given date string (starting at the first numeric character)
using the given date format string (as described in
java.text.SimpleDateFormat) and return a Date.
Open an existing file (read only), with option of cancelling, setting the RandomAccessFile buffer size for efficiency,
with an optional special object for the iosp.
A time span as defined in the W3C XML Schema 1.0 specification:
"PnYnMnDTnHnMnS, where nY represents the number of years, nM the number of months, nD the number of days,
'T' is the date/time separator, nH the number of hours, nM the number of minutes and nS the number of seconds.