Package org.hipparchus.clustering
Enum LocalizedClusteringFormats
- All Implemented Interfaces:
Serializable
,Comparable<LocalizedClusteringFormats>
,java.lang.constant.Constable
,Localizable
public enum LocalizedClusteringFormats
extends Enum<LocalizedClusteringFormats>
implements Localizable
Enumeration for localized messages formats used in exceptions messages.
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetLocalizedString
(Locale locale) Gets the localized string.Gets the source (non-localized) string.static LocalizedClusteringFormats
Returns the enum constant of this type with the specified name.static LocalizedClusteringFormats[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EMPTY_CLUSTER_IN_K_MEANS
EMPTY_CLUSTER_IN_K_MEANS.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getSourceString
Gets the source (non-localized) string.- Specified by:
getSourceString
in interfaceLocalizable
- Returns:
- the source string.
-
getLocalizedString
Gets the localized string.- Specified by:
getLocalizedString
in interfaceLocalizable
- Parameters:
locale
- locale into which to get the string.- Returns:
- the localized string or the source string if no localized version is available.
-