com.google.protobuf.NullValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protobuf-javalite Show documentation
Show all versions of protobuf-javalite Show documentation
Lite version of Protocol Buffers library. This version is optimized for code size, but does
not guarantee API/ABI stability.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/struct.proto
package com.google.protobuf;
/**
*
* `NullValue` is a singleton enumeration to represent the null value for the
* `Value` type union.
* The JSON representation for `NullValue` is JSON `null`.
*
*
* Protobuf enum {@code google.protobuf.NullValue}
*/
public enum NullValue
implements com.google.protobuf.Internal.EnumLite {
/**
*
* Null value.
*
*
* NULL_VALUE = 0;
*/
NULL_VALUE(0),
UNRECOGNIZED(-1),
;
/**
*
* Null value.
*
*
* NULL_VALUE = 0;
*/
public static final int NULL_VALUE_VALUE = 0;
@java.lang.Override
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 number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static NullValue valueOf(int value) {
return forNumber(value);
}
public static NullValue forNumber(int value) {
switch (value) {
case 0: return NULL_VALUE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
NullValue> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
@java.lang.Override
public NullValue findValueByNumber(int number) {
return NullValue.forNumber(number);
}
};
public static com.google.protobuf.Internal.EnumVerifier
internalGetVerifier() {
return NullValueVerifier.INSTANCE;
}
private static final class NullValueVerifier implements
com.google.protobuf.Internal.EnumVerifier {
static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new NullValueVerifier();
@java.lang.Override
public boolean isInRange(int number) {
return NullValue.forNumber(number) != null;
}
};
private final int value;
private NullValue(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.protobuf.NullValue)
}