com.clarifai.grpc.api.OrganizationInvitationStatus Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/service.proto
package com.clarifai.grpc.api;
/**
* Protobuf enum {@code clarifai.api.OrganizationInvitationStatus}
*/
public enum OrganizationInvitationStatus
implements com.google.protobuf.ProtocolMessageEnum {
/**
* NOT_SET = 0;
*/
NOT_SET(0),
/**
* PENDING = 1;
*/
PENDING(1),
/**
* ACCEPTED = 2;
*/
ACCEPTED(2),
/**
* CANCELLED = 3;
*/
CANCELLED(3),
/**
* DECLINED = 4;
*/
DECLINED(4),
/**
* EXPIRED = 5;
*/
EXPIRED(5),
UNRECOGNIZED(-1),
;
/**
* NOT_SET = 0;
*/
public static final int NOT_SET_VALUE = 0;
/**
* PENDING = 1;
*/
public static final int PENDING_VALUE = 1;
/**
* ACCEPTED = 2;
*/
public static final int ACCEPTED_VALUE = 2;
/**
* CANCELLED = 3;
*/
public static final int CANCELLED_VALUE = 3;
/**
* DECLINED = 4;
*/
public static final int DECLINED_VALUE = 4;
/**
* EXPIRED = 5;
*/
public static final int EXPIRED_VALUE = 5;
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 OrganizationInvitationStatus 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 OrganizationInvitationStatus forNumber(int value) {
switch (value) {
case 0: return NOT_SET;
case 1: return PENDING;
case 2: return ACCEPTED;
case 3: return CANCELLED;
case 4: return DECLINED;
case 5: return EXPIRED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
OrganizationInvitationStatus> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public OrganizationInvitationStatus findValueByNumber(int number) {
return OrganizationInvitationStatus.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.clarifai.grpc.api.Service.getDescriptor().getEnumTypes().get(0);
}
private static final OrganizationInvitationStatus[] VALUES = values();
public static OrganizationInvitationStatus 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 OrganizationInvitationStatus(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:clarifai.api.OrganizationInvitationStatus)
}