Serializable
, Comparable<LocalizedODEFormats>
, Localizable
public enum LocalizedODEFormats extends Enum<LocalizedODEFormats> implements Localizable
The constants in this enumeration represent the available formats as localized strings. These formats are intended to be localized using simple properties files, using the constant name as the key and the property value as the message format. The source English format is provided in the constants themselves to serve both as a reminder for developers to understand the parameters needed by each format, as a basis for translators to create localized properties files, and as a default format if some translation is missing.
Modifier and Type | Method | Description |
---|---|---|
String |
getLocalizedString(Locale locale) |
Gets the localized string.
|
String |
getSourceString() |
Gets the source (non-localized) string.
|
static LocalizedODEFormats |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static LocalizedODEFormats[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalizedODEFormats HOLE_BETWEEN_MODELS_TIME_RANGES
public static final LocalizedODEFormats INTEGRATION_METHOD_NEEDS_AT_LEAST_TWO_PREVIOUS_POINTS
public static final LocalizedODEFormats MINIMAL_STEPSIZE_REACHED_DURING_INTEGRATION
public static final LocalizedODEFormats MULTISTEP_STARTER_STOPPED_EARLY
public static final LocalizedODEFormats PROPAGATION_DIRECTION_MISMATCH
public static final LocalizedODEFormats TOO_SMALL_INTEGRATION_INTERVAL
public static final LocalizedODEFormats UNKNOWN_PARAMETER
public static final LocalizedODEFormats UNMATCHED_ODE_IN_EXPANDED_SET
public static final LocalizedODEFormats NAN_APPEARING_DURING_INTEGRATION
public static LocalizedODEFormats[] values()
for (LocalizedODEFormats c : LocalizedODEFormats.values()) System.out.println(c);
public static LocalizedODEFormats valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getSourceString()
getSourceString
in interface Localizable
public String getLocalizedString(Locale locale)
getLocalizedString
in interface Localizable
locale
- locale into which to get the string.Copyright © 2016–2018 Hipparchus.org. All rights reserved.