main.java.com.streamlayer.analytics.common.v1.ResultStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/analytics/v1/common/analytics.common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.analytics.common.v1;
/**
*
* response status
*
*
* Protobuf enum {@code streamlayer.analytics.v1.common.ResultStatus}
*/
public enum ResultStatus
implements com.google.protobuf.Internal.EnumLite {
/**
* RESULT_STATUS_UNSET = 0;
*/
RESULT_STATUS_UNSET(0),
/**
* RESULT_STATUS_OK = 1;
*/
RESULT_STATUS_OK(1),
/**
* RESULT_STATUS_ERROR = 2;
*/
RESULT_STATUS_ERROR(2),
UNRECOGNIZED(-1),
;
/**
* RESULT_STATUS_UNSET = 0;
*/
public static final int RESULT_STATUS_UNSET_VALUE = 0;
/**
* RESULT_STATUS_OK = 1;
*/
public static final int RESULT_STATUS_OK_VALUE = 1;
/**
* RESULT_STATUS_ERROR = 2;
*/
public static final int RESULT_STATUS_ERROR_VALUE = 2;
@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 ResultStatus valueOf(int value) {
return forNumber(value);
}
public static ResultStatus forNumber(int value) {
switch (value) {
case 0: return RESULT_STATUS_UNSET;
case 1: return RESULT_STATUS_OK;
case 2: return RESULT_STATUS_ERROR;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
ResultStatus> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
@java.lang.Override
public ResultStatus findValueByNumber(int number) {
return ResultStatus.forNumber(number);
}
};
public static com.google.protobuf.Internal.EnumVerifier
internalGetVerifier() {
return ResultStatusVerifier.INSTANCE;
}
private static final class ResultStatusVerifier implements
com.google.protobuf.Internal.EnumVerifier {
static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new ResultStatusVerifier();
@java.lang.Override
public boolean isInRange(int number) {
return ResultStatus.forNumber(number) != null;
}
};
private final int value;
private ResultStatus(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:streamlayer.analytics.v1.common.ResultStatus)
}