Enum OperatingSystemFamily
- java.lang.Object
-
- java.lang.Enum<OperatingSystemFamily>
-
- com.google.cloud.migrationcenter.v1.OperatingSystemFamily
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<OperatingSystemFamily>
public enum OperatingSystemFamily extends Enum<OperatingSystemFamily> implements com.google.protobuf.ProtocolMessageEnum
Known categories of operating systems.
Protobuf enumgoogle.cloud.migrationcenter.v1.OperatingSystemFamily
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OS_FAMILY_LINUXVarious Linux flavors.OS_FAMILY_UNIXNon-Linux Unix flavors.OS_FAMILY_UNKNOWNOS_FAMILY_UNKNOWN = 0;OS_FAMILY_WINDOWSMicrosoft Windows Server and Desktop.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intOS_FAMILY_LINUX_VALUEVarious Linux flavors.static intOS_FAMILY_UNIX_VALUENon-Linux Unix flavors.static intOS_FAMILY_UNKNOWN_VALUEOS_FAMILY_UNKNOWN = 0;static intOS_FAMILY_WINDOWS_VALUEMicrosoft Windows Server and Desktop.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static OperatingSystemFamilyforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<OperatingSystemFamily>internalGetValueMap()static OperatingSystemFamilyvalueOf(int value)Deprecated.static OperatingSystemFamilyvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static OperatingSystemFamilyvalueOf(String name)Returns the enum constant of this type with the specified name.static OperatingSystemFamily[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OS_FAMILY_UNKNOWN
public static final OperatingSystemFamily OS_FAMILY_UNKNOWN
OS_FAMILY_UNKNOWN = 0;
-
OS_FAMILY_WINDOWS
public static final OperatingSystemFamily OS_FAMILY_WINDOWS
Microsoft Windows Server and Desktop.
OS_FAMILY_WINDOWS = 1;
-
OS_FAMILY_LINUX
public static final OperatingSystemFamily OS_FAMILY_LINUX
Various Linux flavors.
OS_FAMILY_LINUX = 2;
-
OS_FAMILY_UNIX
public static final OperatingSystemFamily OS_FAMILY_UNIX
Non-Linux Unix flavors.
OS_FAMILY_UNIX = 3;
-
UNRECOGNIZED
public static final OperatingSystemFamily UNRECOGNIZED
-
-
Field Detail
-
OS_FAMILY_UNKNOWN_VALUE
public static final int OS_FAMILY_UNKNOWN_VALUE
OS_FAMILY_UNKNOWN = 0;- See Also:
- Constant Field Values
-
OS_FAMILY_WINDOWS_VALUE
public static final int OS_FAMILY_WINDOWS_VALUE
Microsoft Windows Server and Desktop.
OS_FAMILY_WINDOWS = 1;- See Also:
- Constant Field Values
-
OS_FAMILY_LINUX_VALUE
public static final int OS_FAMILY_LINUX_VALUE
Various Linux flavors.
OS_FAMILY_LINUX = 2;- See Also:
- Constant Field Values
-
OS_FAMILY_UNIX_VALUE
public static final int OS_FAMILY_UNIX_VALUE
Non-Linux Unix flavors.
OS_FAMILY_UNIX = 3;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static OperatingSystemFamily[] 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 (OperatingSystemFamily c : OperatingSystemFamily.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperatingSystemFamily 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:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static OperatingSystemFamily 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 OperatingSystemFamily 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<OperatingSystemFamily> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static OperatingSystemFamily 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
-
-