Enum ReportView
- java.lang.Object
-
- java.lang.Enum<ReportView>
-
- com.google.cloud.migrationcenter.v1.ReportView
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<ReportView>
public enum ReportView extends Enum<ReportView> implements com.google.protobuf.ProtocolMessageEnum
Specifies the types of views that provide complete or partial details of a Report.
Protobuf enumgoogle.cloud.migrationcenter.v1.ReportView
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REPORT_VIEW_BASIC
The report view includes only basic metadata of the Report.REPORT_VIEW_FULL
The report view includes all the metadata of the Report.REPORT_VIEW_STANDARD
The report view includes the standard metadata of an report.REPORT_VIEW_UNSPECIFIED
The report view is not specified.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
REPORT_VIEW_BASIC_VALUE
The report view includes only basic metadata of the Report.static int
REPORT_VIEW_FULL_VALUE
The report view includes all the metadata of the Report.static int
REPORT_VIEW_STANDARD_VALUE
The report view includes the standard metadata of an report.static int
REPORT_VIEW_UNSPECIFIED_VALUE
The report view is not specified.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ReportView
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<ReportView>
internalGetValueMap()
static ReportView
valueOf(int value)
Deprecated.static ReportView
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static ReportView
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReportView[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REPORT_VIEW_UNSPECIFIED
public static final ReportView REPORT_VIEW_UNSPECIFIED
The report view is not specified. The API displays the basic view by default.
REPORT_VIEW_UNSPECIFIED = 0;
-
REPORT_VIEW_BASIC
public static final ReportView REPORT_VIEW_BASIC
The report view includes only basic metadata of the Report. Useful for list views.
REPORT_VIEW_BASIC = 1;
-
REPORT_VIEW_FULL
public static final ReportView REPORT_VIEW_FULL
The report view includes all the metadata of the Report. Useful for preview.
REPORT_VIEW_FULL = 2;
-
REPORT_VIEW_STANDARD
public static final ReportView REPORT_VIEW_STANDARD
The report view includes the standard metadata of an report. Useful for detail view.
REPORT_VIEW_STANDARD = 3;
-
UNRECOGNIZED
public static final ReportView UNRECOGNIZED
-
-
Field Detail
-
REPORT_VIEW_UNSPECIFIED_VALUE
public static final int REPORT_VIEW_UNSPECIFIED_VALUE
The report view is not specified. The API displays the basic view by default.
REPORT_VIEW_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
REPORT_VIEW_BASIC_VALUE
public static final int REPORT_VIEW_BASIC_VALUE
The report view includes only basic metadata of the Report. Useful for list views.
REPORT_VIEW_BASIC = 1;
- See Also:
- Constant Field Values
-
REPORT_VIEW_FULL_VALUE
public static final int REPORT_VIEW_FULL_VALUE
The report view includes all the metadata of the Report. Useful for preview.
REPORT_VIEW_FULL = 2;
- See Also:
- Constant Field Values
-
REPORT_VIEW_STANDARD_VALUE
public static final int REPORT_VIEW_STANDARD_VALUE
The report view includes the standard metadata of an report. Useful for detail view.
REPORT_VIEW_STANDARD = 3;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ReportView[] 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 (ReportView c : ReportView.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReportView 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 nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static ReportView 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 nameNullPointerException
- if the argument is null
-
forNumber
public static ReportView 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<ReportView> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static ReportView 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 nameNullPointerException
- if the argument is null
-
-