main.java.com.streamlayer.interactive.common.ImagePosition 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/interactive/interactive.common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.interactive.common;
/**
* Protobuf enum {@code streamlayer.interactive.ImagePosition}
*/
public enum ImagePosition
implements com.google.protobuf.Internal.EnumLite {
/**
* IMAGE_POSITION_UNSET = 0;
*/
IMAGE_POSITION_UNSET(0),
/**
* IMAGE_POSITION_LEFT = 1;
*/
IMAGE_POSITION_LEFT(1),
/**
* IMAGE_POSITION_RIGHT = 2;
*/
IMAGE_POSITION_RIGHT(2),
UNRECOGNIZED(-1),
;
/**
* IMAGE_POSITION_UNSET = 0;
*/
public static final int IMAGE_POSITION_UNSET_VALUE = 0;
/**
* IMAGE_POSITION_LEFT = 1;
*/
public static final int IMAGE_POSITION_LEFT_VALUE = 1;
/**
* IMAGE_POSITION_RIGHT = 2;
*/
public static final int IMAGE_POSITION_RIGHT_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 ImagePosition valueOf(int value) {
return forNumber(value);
}
public static ImagePosition forNumber(int value) {
switch (value) {
case 0: return IMAGE_POSITION_UNSET;
case 1: return IMAGE_POSITION_LEFT;
case 2: return IMAGE_POSITION_RIGHT;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
ImagePosition> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
@java.lang.Override
public ImagePosition findValueByNumber(int number) {
return ImagePosition.forNumber(number);
}
};
public static com.google.protobuf.Internal.EnumVerifier
internalGetVerifier() {
return ImagePositionVerifier.INSTANCE;
}
private static final class ImagePositionVerifier implements
com.google.protobuf.Internal.EnumVerifier {
static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new ImagePositionVerifier();
@java.lang.Override
public boolean isInRange(int number) {
return ImagePosition.forNumber(number) != null;
}
};
private final int value;
private ImagePosition(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:streamlayer.interactive.ImagePosition)
}