main.java.com.streamlayer.sdkSettings.client.FriendsSound 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/sdkSettings/client/client.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.sdkSettings.client;
/**
* Protobuf enum {@code streamlayer.sdkSettings.client.FriendsSound}
*/
public enum FriendsSound
implements com.google.protobuf.Internal.EnumLite {
/**
* FRIENDS_SOUND_UNSET = 0;
*/
FRIENDS_SOUND_UNSET(0),
/**
* FRIENDS_SOUND_DISALLOW = 1;
*/
FRIENDS_SOUND_DISALLOW(1),
/**
* FRIENDS_SOUND_ALLOW = 2;
*/
FRIENDS_SOUND_ALLOW(2),
UNRECOGNIZED(-1),
;
/**
* FRIENDS_SOUND_UNSET = 0;
*/
public static final int FRIENDS_SOUND_UNSET_VALUE = 0;
/**
* FRIENDS_SOUND_DISALLOW = 1;
*/
public static final int FRIENDS_SOUND_DISALLOW_VALUE = 1;
/**
* FRIENDS_SOUND_ALLOW = 2;
*/
public static final int FRIENDS_SOUND_ALLOW_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 FriendsSound valueOf(int value) {
return forNumber(value);
}
public static FriendsSound forNumber(int value) {
switch (value) {
case 0: return FRIENDS_SOUND_UNSET;
case 1: return FRIENDS_SOUND_DISALLOW;
case 2: return FRIENDS_SOUND_ALLOW;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
FriendsSound> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
@java.lang.Override
public FriendsSound findValueByNumber(int number) {
return FriendsSound.forNumber(number);
}
};
public static com.google.protobuf.Internal.EnumVerifier
internalGetVerifier() {
return FriendsSoundVerifier.INSTANCE;
}
private static final class FriendsSoundVerifier implements
com.google.protobuf.Internal.EnumVerifier {
static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new FriendsSoundVerifier();
@java.lang.Override
public boolean isInRange(int number) {
return FriendsSound.forNumber(number) != null;
}
};
private final int value;
private FriendsSound(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:streamlayer.sdkSettings.client.FriendsSound)
}