Enum Status.State

  • All Implemented Interfaces:
    com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<Status.State>
    Enclosing class:
    Status

    public static enum Status.State
    extends Enum<Status.State>
    implements com.google.protobuf.ProtocolMessageEnum
     A list of states for the dataset.
     
    Protobuf enum google.maps.mapsplatformdatasets.v1.Status.State
    • Enum Constant Detail

      • STATE_UNSPECIFIED

        public static final Status.State STATE_UNSPECIFIED
         The state of this dataset is not set.
         
        STATE_UNSPECIFIED = 0;
      • STATE_IMPORTING

        public static final Status.State STATE_IMPORTING
         Data is being imported to a dataset.
         
        STATE_IMPORTING = 1;
      • STATE_IMPORT_SUCCEEDED

        public static final Status.State STATE_IMPORT_SUCCEEDED
         Importing data to a dataset succeeded.
         
        STATE_IMPORT_SUCCEEDED = 2;
      • STATE_IMPORT_FAILED

        public static final Status.State STATE_IMPORT_FAILED
         Importing data to a dataset failed.
         
        STATE_IMPORT_FAILED = 3;
      • STATE_DELETING

        public static final Status.State STATE_DELETING
         The dataset is in the process of getting deleted.
         
        STATE_DELETING = 4;
      • STATE_DELETION_FAILED

        public static final Status.State STATE_DELETION_FAILED
         The deletion failed state. This state represents that dataset deletion
         has failed. Deletion may be retried.
         
        STATE_DELETION_FAILED = 5;
      • STATE_PROCESSING

        public static final Status.State STATE_PROCESSING
         Data is being processed.
         
        STATE_PROCESSING = 6;
      • STATE_PROCESSING_FAILED

        public static final Status.State STATE_PROCESSING_FAILED
         The processing failed state. This state represents that processing has
         failed and may report errors.
         
        STATE_PROCESSING_FAILED = 7;
      • STATE_NEEDS_REVIEW

        public static final Status.State STATE_NEEDS_REVIEW
         This state is currently not used.
         
        STATE_NEEDS_REVIEW = 8;
      • STATE_PUBLISHING

        public static final Status.State STATE_PUBLISHING
         The publishing state. This state represents the publishing is in
         progress.
         
        STATE_PUBLISHING = 9;
      • STATE_PUBLISHING_FAILED

        public static final Status.State STATE_PUBLISHING_FAILED
         The publishing failed states. This state represents that the
         publishing failed. Publishing may be retried.
         
        STATE_PUBLISHING_FAILED = 10;
      • STATE_COMPLETED

        public static final Status.State STATE_COMPLETED
         The completed state. This state represents the dataset being
         available for its specific usage.
         
        STATE_COMPLETED = 11;
      • UNRECOGNIZED

        public static final Status.State UNRECOGNIZED
    • Field Detail

      • STATE_UNSPECIFIED_VALUE

        public static final int STATE_UNSPECIFIED_VALUE
         The state of this dataset is not set.
         
        STATE_UNSPECIFIED = 0;
        See Also:
        Constant Field Values
      • STATE_IMPORTING_VALUE

        public static final int STATE_IMPORTING_VALUE
         Data is being imported to a dataset.
         
        STATE_IMPORTING = 1;
        See Also:
        Constant Field Values
      • STATE_IMPORT_SUCCEEDED_VALUE

        public static final int STATE_IMPORT_SUCCEEDED_VALUE
         Importing data to a dataset succeeded.
         
        STATE_IMPORT_SUCCEEDED = 2;
        See Also:
        Constant Field Values
      • STATE_IMPORT_FAILED_VALUE

        public static final int STATE_IMPORT_FAILED_VALUE
         Importing data to a dataset failed.
         
        STATE_IMPORT_FAILED = 3;
        See Also:
        Constant Field Values
      • STATE_DELETING_VALUE

        public static final int STATE_DELETING_VALUE
         The dataset is in the process of getting deleted.
         
        STATE_DELETING = 4;
        See Also:
        Constant Field Values
      • STATE_DELETION_FAILED_VALUE

        public static final int STATE_DELETION_FAILED_VALUE
         The deletion failed state. This state represents that dataset deletion
         has failed. Deletion may be retried.
         
        STATE_DELETION_FAILED = 5;
        See Also:
        Constant Field Values
      • STATE_PROCESSING_VALUE

        public static final int STATE_PROCESSING_VALUE
         Data is being processed.
         
        STATE_PROCESSING = 6;
        See Also:
        Constant Field Values
      • STATE_PROCESSING_FAILED_VALUE

        public static final int STATE_PROCESSING_FAILED_VALUE
         The processing failed state. This state represents that processing has
         failed and may report errors.
         
        STATE_PROCESSING_FAILED = 7;
        See Also:
        Constant Field Values
      • STATE_NEEDS_REVIEW_VALUE

        public static final int STATE_NEEDS_REVIEW_VALUE
         This state is currently not used.
         
        STATE_NEEDS_REVIEW = 8;
        See Also:
        Constant Field Values
      • STATE_PUBLISHING_VALUE

        public static final int STATE_PUBLISHING_VALUE
         The publishing state. This state represents the publishing is in
         progress.
         
        STATE_PUBLISHING = 9;
        See Also:
        Constant Field Values
      • STATE_PUBLISHING_FAILED_VALUE

        public static final int STATE_PUBLISHING_FAILED_VALUE
         The publishing failed states. This state represents that the
         publishing failed. Publishing may be retried.
         
        STATE_PUBLISHING_FAILED = 10;
        See Also:
        Constant Field Values
      • STATE_COMPLETED_VALUE

        public static final int STATE_COMPLETED_VALUE
         The completed state. This state represents the dataset being
         available for its specific usage.
         
        STATE_COMPLETED = 11;
        See Also:
        Constant Field Values
    • Method Detail

      • values

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

        public static Status.State valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static Status.State valueOf​(int value)
        Deprecated.
        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:
        value - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • forNumber

        public static Status.State forNumber​(int value)
        Parameters:
        value - The numeric wire value of the corresponding enum entry.
        Returns:
        The enum associated with the given numeric wire value.
      • internalGetValueMap

        public static com.google.protobuf.Internal.EnumLiteMap<Status.State> internalGetValueMap()
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static Status.State valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        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:
        desc - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null