|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SeriesException | |
wt.series | Defines various Series as used by the
wt.vc package for
Iterated and
Versioned . |
Uses of SeriesException in wt.series |
Subclasses of SeriesException in wt.series | |
class |
SeriesConstructionException
Provides an abstraction of an abnormal occurrence or error in the construction of a series. |
class |
SeriesIncrementInvalidException
Provides an abstraction of an abnormal occurrence or error when attempting to set a series value to an invalid value. |
class |
SeriesIncrementOutOfBoundsException
Provides an abstraction of an abnormal occurrence or error when attempting to increment or decrement a series beyond its max or min, respectively. |
class |
SeriesLevelOutOfBoundsException
Provides an abstraction of an abnormal occurrence or error where the level in a harvard series can't be moved any more to either the left or right. |
Methods in wt.series that throw SeriesException | |
void |
StandardSeriesService.addSeries(SeriesTemplate series)
Supported API: true |
List |
StandardSeriesService.getValues(String series,
String maturity)
Supported API: true |
int |
StandardSeriesService.getMaturityIndex(String maturity)
Supported API: true |
int |
StandardSeriesService.getSeriesIndex(String series)
Supported API: true |
String |
StandardSeriesService.getSeriesKey(String value)
Supported API: true |
List |
StandardSeriesService.getAllMaturityLevels(String series)
Supported API: true |
void |
SeriesServiceFwd.addSeries(SeriesTemplate series)
Supported API: false |
List |
SeriesServiceFwd.getValues(String series,
String maturity)
Supported API: false |
int |
SeriesServiceFwd.getMaturityIndex(String maturity)
Supported API: false |
int |
SeriesServiceFwd.getSeriesIndex(String series)
Supported API: false |
String |
SeriesServiceFwd.getSeriesKey(String value)
Supported API: false |
List |
SeriesServiceFwd.getAllMaturityLevels(String series)
Supported API: false |
void |
SeriesService.addSeries(SeriesTemplate series)
Supported API: true |
List |
SeriesService.getValues(String series,
String maturity)
Supported API: true |
int |
SeriesService.getMaturityIndex(String maturity)
Supported API: true |
int |
SeriesService.getSeriesIndex(String series)
Supported API: true |
String |
SeriesService.getSeriesKey(String value)
Supported API: true |
List |
SeriesService.getAllMaturityLevels(String series)
Supported API: true |
static Series |
Series.newSeries(String userClassName)
Makes a new instance of one of the subclassed series as defined in a property where the using class is paired with the series subclass. |
static Series |
Series.newSeries(String userClassName,
String value)
Makes a new instance of one of the subclassed series as defined in a property where the using class is paired with the series subclass. |
abstract void |
Series.reset()
Specifies an abstract means of resetting the value to the first one in a series. |
abstract void |
Series.increment()
Specifies an abstract means of incrementing the value to the next adjacent ascending value in a series. |
abstract void |
Series.decrement()
Specifies an abstract means of decrementing the value to the next adjacent descending value in a series. |
static MultilevelSeries |
MultilevelSeries.newMultilevelSeries(String userClassName)
Makes a new instance where the value is set to the given array of series. |
static MultilevelSeries |
MultilevelSeries.newMultilevelSeries(String userClassName,
String value)
Makes a new instance where the value is set to the given value. |
static MultilevelSeries |
MultilevelSeries.newMultilevelSeries(String userClassName,
String value,
Integer level)
Makes a new instance where the value is set to the given value and level. |
void |
MultilevelSeries.reset()
Resets the subvalue at the current level within the series to its min. |
void |
MultilevelSeries.increment()
Increments the subvalue at the current level within the series to the next adjacent value. |
void |
MultilevelSeries.decrement()
Decrements the subvalue at the current level within the series to the next adjacent value. |
void |
MultilevelSeries.toLeft()
Moves the current level one to the left. |
void |
MultilevelSeries.toRight()
Moves the current level one to the right. |
Series |
MultilevelSeries.getSubvalue()
Gets the subvalue at the current level within the series. |
protected abstract void |
MultilevelSeries.validateArgs(String aValue,
Integer aLevel)
Supported API: false |
void |
MulticharacterSeries.reset()
Resets the value of the series to its min. |
void |
MulticharacterSeries.increment()
Increments the value of the series to the next adjacent value. |
void |
MulticharacterSeries.decrement()
Decrements the value of the series to the next adjacent value. |
void |
IntegerSeries.reset()
Resets the value of the series to its min. |
void |
IntegerSeries.increment()
Increments the value of the series to the next adjacent value. |
void |
IntegerSeries.decrement()
Decrements the value of the series to the next adjacent value. |
static HarvardSeries |
HarvardSeries.newHarvardSeries()
Makes a new instance. |
static HarvardSeries |
HarvardSeries.newHarvardSeries(Series[] values)
Makes a new instance where the value is set to the given array of series. |
protected void |
HarvardSeries.initialize(Series[] values)
Supports initialization, following construction of an instance. |
void |
HarvardSeries.reset()
Resets the subvalue at the current level within the series to its min. |
void |
HarvardSeries.increment()
Increments the subvalue at the current level within the series to the next adjacent value. |
void |
HarvardSeries.decrement()
Decrements the subvalue at the current level within the series to the next adjacent value. |
void |
HarvardSeries.toLeft()
Moves the current level one to the left. |
void |
HarvardSeries.toRight()
Moves the current level one to the right. |
Series |
HarvardSeries.getSubvalue()
Gets the subvalue at the current level within the series. |
static HarvardSeries |
HarvardSeries.newHarvardSeries(String seriesName,
Series[] values)
Makes a new instance where the value is set to the given array of series. |
protected void |
HarvardSeries.initialize(String seriesName,
Series[] values)
Supports initialization, following construction of an instance. |
protected void |
HarvardSeries.validateArgs(String aValue,
Integer aLevel)
Supported API: false |
static FileBasedSeries |
FileBasedSeries.newFileBasedSeries(String series,
String maturity)
Makes a new instance where the value at the given series and maturity level is set to the given string. |
protected void |
FileBasedSeries.initialize(String series,
String maturity)
Supports initialization, following construction of an instance. |
void |
FileBasedSeries.reset()
Specifies an abstract means of resetting the value to the first one in a series. |
void |
FileBasedSeries.increment()
Specifies an abstract means of incrementing the value to the next adjacent ascending value in a series. |
void |
FileBasedSeries.decrement()
Specifies an abstract means of decrementing the value to the next adjacent descending value in a series. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |