Enum DataSetArchivingStatus

  • All Implemented Interfaces:
    com.google.gwt.user.client.rpc.IsSerializable, java.io.Serializable, java.lang.Comparable<DataSetArchivingStatus>

    public enum DataSetArchivingStatus
    extends java.lang.Enum<DataSetArchivingStatus>
    implements com.google.gwt.user.client.rpc.IsSerializable
    Status of data set archiving process.
                                                                                                                      |                                                         
                                                      
        -------> ARCHIVE_PENDING --------------> ARCHIVED 
        |                                            |             
        |                                            |  unarchive
        | archive(removeFromDS=true)                 |
        |                                            |  
        |                                            V             
        ----------------  AVAILABLE  <------- UNARCHIVE_PENDING
                          ^      ^  
                          |      |
                          |      |
                          |      | archive(removeFromDS=false)
                          |      |
                          |      |
      LOCKED <------------|      |-------------> BACKUP_PENDING
     
     
     
    • Method Detail

      • values

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

        public static DataSetArchivingStatus 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
      • getDescription

        public java.lang.String getDescription()
      • isAvailable

        public boolean isAvailable()
      • isDeletable

        public boolean isDeletable()
        return true if users are allowed to delete datasets with this status.