com.craxiom.messaging.bluetooth.SupportedTechnologies Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network-survey-messaging Show documentation
Show all versions of network-survey-messaging Show documentation
Protobuf and gRPC stubs for sending Wireless Protocol Survey messages'
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: com/craxiom/messaging/bluetooth/supportedtech/supported_technologies.proto
// Protobuf Java Version: 4.27.3
package com.craxiom.messaging.bluetooth;
/**
* Protobuf enum {@code com.craxiom.messaging.bluetooth.supportedtech.SupportedTechnologies}
*/
public enum SupportedTechnologies
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNKNOWN = 0;
*/
UNKNOWN(0),
/**
*
* Basic Rate / Enhanced Data Rate (also covers 802.11 AMP). Aka Classic.
*
*
* BR_EDR = 1;
*/
BR_EDR(1),
/**
* LE = 2;
*/
LE(2),
/**
*
* Dual Mode - BR/EDR/LE
*
*
* DUAL = 3;
*/
DUAL(3),
UNRECOGNIZED(-1),
;
static {
com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
/* major= */ 4,
/* minor= */ 27,
/* patch= */ 3,
/* suffix= */ "",
SupportedTechnologies.class.getName());
}
/**
* UNKNOWN = 0;
*/
public static final int UNKNOWN_VALUE = 0;
/**
*
* Basic Rate / Enhanced Data Rate (also covers 802.11 AMP). Aka Classic.
*
*
* BR_EDR = 1;
*/
public static final int BR_EDR_VALUE = 1;
/**
* LE = 2;
*/
public static final int LE_VALUE = 2;
/**
*
* Dual Mode - BR/EDR/LE
*
*
* DUAL = 3;
*/
public static final int DUAL_VALUE = 3;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static SupportedTechnologies valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static SupportedTechnologies forNumber(int value) {
switch (value) {
case 0: return UNKNOWN;
case 1: return BR_EDR;
case 2: return LE;
case 3: return DUAL;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
SupportedTechnologies> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public SupportedTechnologies findValueByNumber(int number) {
return SupportedTechnologies.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return com.craxiom.messaging.bluetooth.SupportedTechnologiesOuterClass.getDescriptor().getEnumTypes().get(0);
}
private static final SupportedTechnologies[] VALUES = values();
public static SupportedTechnologies valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private SupportedTechnologies(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:com.craxiom.messaging.bluetooth.supportedtech.SupportedTechnologies)
}