mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-06-20 22:45:02 +08:00
201 lines
6.5 KiB
Java
201 lines
6.5 KiB
Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: SalvagePreventStopReason.proto
|
|
|
|
package emu.grasscutter.net.proto;
|
|
|
|
public final class SalvagePreventStopReasonOuterClass {
|
|
private SalvagePreventStopReasonOuterClass() {}
|
|
public static void registerAllExtensions(
|
|
com.google.protobuf.ExtensionRegistryLite registry) {
|
|
}
|
|
|
|
public static void registerAllExtensions(
|
|
com.google.protobuf.ExtensionRegistry registry) {
|
|
registerAllExtensions(
|
|
(com.google.protobuf.ExtensionRegistryLite) registry);
|
|
}
|
|
/**
|
|
* <pre>
|
|
* Obf: MPKIGDOAHIH
|
|
* </pre>
|
|
*
|
|
* Protobuf enum {@code SalvagePreventStopReason}
|
|
*/
|
|
public enum SalvagePreventStopReason
|
|
implements com.google.protobuf.ProtocolMessageEnum {
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_NONE = 0;</code>
|
|
*/
|
|
SALVAGE_PREVENT_STOP_NONE(0),
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_SUCCESS = 1;</code>
|
|
*/
|
|
SALVAGE_PREVENT_STOP_SUCCESS(1),
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_ARRIVAL = 2;</code>
|
|
*/
|
|
SALVAGE_PREVENT_STOP_ARRIVAL(2),
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_INTERRUPT = 3;</code>
|
|
*/
|
|
SALVAGE_PREVENT_STOP_INTERRUPT(3),
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_LEAVE = 4;</code>
|
|
*/
|
|
SALVAGE_PREVENT_STOP_LEAVE(4),
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_FULL = 5;</code>
|
|
*/
|
|
SALVAGE_PREVENT_STOP_FULL(5),
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_AWAY = 6;</code>
|
|
*/
|
|
SALVAGE_PREVENT_STOP_AWAY(6),
|
|
UNRECOGNIZED(-1),
|
|
;
|
|
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_NONE = 0;</code>
|
|
*/
|
|
public static final int SALVAGE_PREVENT_STOP_NONE_VALUE = 0;
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_SUCCESS = 1;</code>
|
|
*/
|
|
public static final int SALVAGE_PREVENT_STOP_SUCCESS_VALUE = 1;
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_ARRIVAL = 2;</code>
|
|
*/
|
|
public static final int SALVAGE_PREVENT_STOP_ARRIVAL_VALUE = 2;
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_INTERRUPT = 3;</code>
|
|
*/
|
|
public static final int SALVAGE_PREVENT_STOP_INTERRUPT_VALUE = 3;
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_LEAVE = 4;</code>
|
|
*/
|
|
public static final int SALVAGE_PREVENT_STOP_LEAVE_VALUE = 4;
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_FULL = 5;</code>
|
|
*/
|
|
public static final int SALVAGE_PREVENT_STOP_FULL_VALUE = 5;
|
|
/**
|
|
* <code>SALVAGE_PREVENT_STOP_AWAY = 6;</code>
|
|
*/
|
|
public static final int SALVAGE_PREVENT_STOP_AWAY_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 SalvagePreventStopReason 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 SalvagePreventStopReason forNumber(int value) {
|
|
switch (value) {
|
|
case 0: return SALVAGE_PREVENT_STOP_NONE;
|
|
case 1: return SALVAGE_PREVENT_STOP_SUCCESS;
|
|
case 2: return SALVAGE_PREVENT_STOP_ARRIVAL;
|
|
case 3: return SALVAGE_PREVENT_STOP_INTERRUPT;
|
|
case 4: return SALVAGE_PREVENT_STOP_LEAVE;
|
|
case 5: return SALVAGE_PREVENT_STOP_FULL;
|
|
case 6: return SALVAGE_PREVENT_STOP_AWAY;
|
|
default: return null;
|
|
}
|
|
}
|
|
|
|
public static com.google.protobuf.Internal.EnumLiteMap<SalvagePreventStopReason>
|
|
internalGetValueMap() {
|
|
return internalValueMap;
|
|
}
|
|
private static final com.google.protobuf.Internal.EnumLiteMap<
|
|
SalvagePreventStopReason> internalValueMap =
|
|
new com.google.protobuf.Internal.EnumLiteMap<SalvagePreventStopReason>() {
|
|
public SalvagePreventStopReason findValueByNumber(int number) {
|
|
return SalvagePreventStopReason.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 emu.grasscutter.net.proto.SalvagePreventStopReasonOuterClass.getDescriptor().getEnumTypes().get(0);
|
|
}
|
|
|
|
private static final SalvagePreventStopReason[] VALUES = values();
|
|
|
|
public static SalvagePreventStopReason 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 SalvagePreventStopReason(int value) {
|
|
this.value = value;
|
|
}
|
|
|
|
// @@protoc_insertion_point(enum_scope:SalvagePreventStopReason)
|
|
}
|
|
|
|
|
|
public static com.google.protobuf.Descriptors.FileDescriptor
|
|
getDescriptor() {
|
|
return descriptor;
|
|
}
|
|
private static com.google.protobuf.Descriptors.FileDescriptor
|
|
descriptor;
|
|
static {
|
|
java.lang.String[] descriptorData = {
|
|
"\n\036SalvagePreventStopReason.proto*\377\001\n\030Sal" +
|
|
"vagePreventStopReason\022\035\n\031SALVAGE_PREVENT" +
|
|
"_STOP_NONE\020\000\022 \n\034SALVAGE_PREVENT_STOP_SUC" +
|
|
"CESS\020\001\022 \n\034SALVAGE_PREVENT_STOP_ARRIVAL\020\002" +
|
|
"\022\"\n\036SALVAGE_PREVENT_STOP_INTERRUPT\020\003\022\036\n\032" +
|
|
"SALVAGE_PREVENT_STOP_LEAVE\020\004\022\035\n\031SALVAGE_" +
|
|
"PREVENT_STOP_FULL\020\005\022\035\n\031SALVAGE_PREVENT_S" +
|
|
"TOP_AWAY\020\006B\033\n\031emu.grasscutter.net.protob" +
|
|
"\006proto3"
|
|
};
|
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
});
|
|
}
|
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
}
|