Enum Class CoreConfigurationType

java.lang.Object
java.lang.Enum<CoreConfigurationType>
com.tenio.core.configuration.define.CoreConfigurationType
All Implemented Interfaces:
com.tenio.common.configuration.ConfigurationType, Serializable, Comparable<CoreConfigurationType>, Constable

public enum CoreConfigurationType extends Enum<CoreConfigurationType> implements com.tenio.common.configuration.ConfigurationType
This server needs some basic configuration to start running. The configuration file can be defined as an XML file. See an example in configuration.example.xml. You can also extend this file to create your own configuration values.
  • Enum Constant Details

  • Method Details

    • values

      public static CoreConfigurationType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CoreConfigurationType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getByValue

      public static CoreConfigurationType getByValue(String value)
    • getValue

      public final String getValue()
    • toString

      public final String toString()
      Overrides:
      toString in class Enum<CoreConfigurationType>