Enum ReleaseStatus

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ReleaseStatus>

    public enum ReleaseStatus
    extends java.lang.Enum<ReleaseStatus>
    • Field Detail

      • RECOVERABLE_STATUSES

        public static final ReleaseStatus[] RECOVERABLE_STATUSES
      • ACTIVE_STATUSES

        public static final ReleaseStatus[] ACTIVE_STATUSES
      • INACTIVE_STATUSES

        public static final ReleaseStatus[] INACTIVE_STATUSES
    • Method Detail

      • values

        public static ReleaseStatus[] 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 (ReleaseStatus c : ReleaseStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ReleaseStatus 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
      • value

        public java.lang.String value()
      • isActive

        public boolean isActive()
      • isInactive

        public boolean isInactive()
      • hasBeenStarted

        public boolean hasBeenStarted()
      • namesOf

        public static java.util.Set<java.lang.String> namesOf​(ReleaseStatus... statuses)
      • namesOf

        public static java.util.Set<java.lang.String> namesOf​(java.util.EnumSet<ReleaseStatus> statuses)