LocalizedOptimFormats.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      https://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. /*
  18.  * This is not the original file distributed by the Apache Software Foundation
  19.  * It has been modified by the Hipparchus project
  20.  */
  21. package org.hipparchus.optim;

  22. import java.util.Locale;

  23. import org.hipparchus.exception.Localizable;

  24. /**
  25.  * Enumeration for localized messages formats used in exceptions messages.
  26.  * <p>
  27.  * The constants in this enumeration represent the available
  28.  * formats as localized strings. These formats are intended to be
  29.  * localized using simple properties files, using the constant
  30.  * name as the key and the property value as the message format.
  31.  * The source English format is provided in the constants themselves
  32.  * to serve both as a reminder for developers to understand the parameters
  33.  * needed by each format, as a basis for translators to create
  34.  * localized properties files, and as a default format if some
  35.  * translation is missing.
  36.  * </p>
  37.  */
  38. public enum LocalizedOptimFormats implements Localizable {

  39.     /** EQUAL_VERTICES_IN_SIMPLEX. */
  40.     EQUAL_VERTICES_IN_SIMPLEX("equal vertices {0} and {1} in simplex configuration"),

  41.     /** INVALID_IMPLEMENTATION. */
  42.     INVALID_IMPLEMENTATION("required functionality is missing in {0}"),

  43.     /** NO_FEASIBLE_SOLUTION. */
  44.     NO_FEASIBLE_SOLUTION("no feasible solution"),

  45.     /** SIMPLEX_NEED_ONE_POINT. */
  46.     SIMPLEX_NEED_ONE_POINT("simplex must contain at least one point"),

  47.     /** TOO_SMALL_COST_RELATIVE_TOLERANCE. */
  48.     TOO_SMALL_COST_RELATIVE_TOLERANCE("cost relative tolerance is too small ({0}), no further reduction in the sum of squares is possible"),

  49.     /** TOO_SMALL_ORTHOGONALITY_TOLERANCE. */
  50.     TOO_SMALL_ORTHOGONALITY_TOLERANCE("orthogonality tolerance is too small ({0}), solution is orthogonal to the jacobian"),

  51.     /** TOO_SMALL_PARAMETERS_RELATIVE_TOLERANCE. */
  52.     TOO_SMALL_PARAMETERS_RELATIVE_TOLERANCE("parameters relative tolerance is too small ({0}), no further improvement in the approximate solution is possible"),

  53.     /** TRUST_REGION_STEP_FAILED. */
  54.     TRUST_REGION_STEP_FAILED("trust region step has failed to reduce Q"),

  55.     /** UNABLE_TO_PERFORM_QR_DECOMPOSITION_ON_JACOBIAN. */
  56.     UNABLE_TO_PERFORM_QR_DECOMPOSITION_ON_JACOBIAN("unable to perform Q.R decomposition on the {0}x{1} jacobian matrix"),

  57.     /** UNABLE_TO_SOLVE_SINGULAR_PROBLEM. */
  58.     UNABLE_TO_SOLVE_SINGULAR_PROBLEM("unable to solve: singular problem"),

  59.     /** UNBOUNDED_SOLUTION. */
  60.     UNBOUNDED_SOLUTION("unbounded solution"),

  61.     /** CONSTRAINTS_RANK. */
  62.     CONSTRAINTS_RANK("rank of constraints must be lesser than domain dimension, but {0} >= {1}");

  63.     /** Source English format. */
  64.     private final String sourceFormat;

  65.     /** Simple constructor.
  66.      * @param sourceFormat source English format to use when no
  67.      * localized version is available
  68.      */
  69.     LocalizedOptimFormats(final String sourceFormat) {
  70.         this.sourceFormat = sourceFormat;
  71.     }

  72.     /** {@inheritDoc} */
  73.     @Override
  74.     public String getSourceString() {
  75.         return sourceFormat;
  76.     }

  77.     /** {@inheritDoc} */
  78.     @Override
  79.     public String getLocalizedString(final Locale locale) {
  80.         return getLocalizedString("assets/" + LocalizedOptimFormats.class.getName().replaceAll("\\.", "/"),
  81.                                   name(), locale);
  82.     }

  83. }