Enum StrangeEons.ReleaseType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ALPHA
      An alpha release means the the current version is still being very actively developed.
      BETA
      A beta release is not yet ready to be considered a general release.
      DEVELOPMENT
      A development release is sometimes made available to plug-in developers to prepare for major new features.
      GENERAL
      A general release is intended to be stable and feature complete.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static StrangeEons.ReleaseType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static StrangeEons.ReleaseType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • GENERAL

        public static final StrangeEons.ReleaseType GENERAL
        A general release is intended to be stable and feature complete.
      • BETA

        public static final StrangeEons.ReleaseType BETA
        A beta release is not yet ready to be considered a general release. The feature set is generally complete, but it has not been thoroughly tested and it may still contain significant bugs. Development releases will display the build number and the Greek letter beta (β) in the application title bar.
      • ALPHA

        public static final StrangeEons.ReleaseType ALPHA
        An alpha release means the the current version is still being very actively developed. Features and public APIs may be incomplete, and may change radically or be added or removed from release to release. While mature features are likely to work normally, newer features may only have seen minimal testing. Development releases will display the build number and the Greek letter alpha (α) in the application title bar.
      • DEVELOPMENT

        public static final StrangeEons.ReleaseType DEVELOPMENT
        A development release is sometimes made available to plug-in developers to prepare for major new features. Development releases do not appear on the regular download page. A development release has all of the qualities of an alpha release, only moreso. Development releases will display the build number and the Greek letter pi (π) in the application title bar.
    • Method Detail

      • values

        public static StrangeEons.ReleaseType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (StrangeEons.ReleaseType c : StrangeEons.ReleaseType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StrangeEons.ReleaseType valueOf​(java.lang.String name)
        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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null