com.craxiom.messaging.LteBandwidth 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/ltebandwidth/lte_bandwidth.proto
// Protobuf Java Version: 4.27.3
package com.craxiom.messaging;
/**
* Protobuf enum {@code com.craxiom.messaging.ltebandwidth.LteBandwidth}
*/
public enum LteBandwidth
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNKNOWN = 0;
*/
UNKNOWN(0),
/**
* MHZ_1_4 = 1;
*/
MHZ_1_4(1),
/**
* MHZ_3 = 2;
*/
MHZ_3(2),
/**
* MHZ_5 = 3;
*/
MHZ_5(3),
/**
* MHZ_10 = 4;
*/
MHZ_10(4),
/**
* MHZ_15 = 5;
*/
MHZ_15(5),
/**
* MHZ_20 = 6;
*/
MHZ_20(6),
UNRECOGNIZED(-1),
;
static {
com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
/* major= */ 4,
/* minor= */ 27,
/* patch= */ 3,
/* suffix= */ "",
LteBandwidth.class.getName());
}
/**
* UNKNOWN = 0;
*/
public static final int UNKNOWN_VALUE = 0;
/**
* MHZ_1_4 = 1;
*/
public static final int MHZ_1_4_VALUE = 1;
/**
* MHZ_3 = 2;
*/
public static final int MHZ_3_VALUE = 2;
/**
* MHZ_5 = 3;
*/
public static final int MHZ_5_VALUE = 3;
/**
* MHZ_10 = 4;
*/
public static final int MHZ_10_VALUE = 4;
/**
* MHZ_15 = 5;
*/
public static final int MHZ_15_VALUE = 5;
/**
* MHZ_20 = 6;
*/
public static final int MHZ_20_VALUE = 6;
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 LteBandwidth 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 LteBandwidth forNumber(int value) {
switch (value) {
case 0: return UNKNOWN;
case 1: return MHZ_1_4;
case 2: return MHZ_3;
case 3: return MHZ_5;
case 4: return MHZ_10;
case 5: return MHZ_15;
case 6: return MHZ_20;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
LteBandwidth> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public LteBandwidth findValueByNumber(int number) {
return LteBandwidth.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.LteBandwidthOuterClass.getDescriptor().getEnumTypes().get(0);
}
private static final LteBandwidth[] VALUES = values();
public static LteBandwidth 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 LteBandwidth(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:com.craxiom.messaging.ltebandwidth.LteBandwidth)
}