com.devcycle.sdk.server.local.protobuf.CustomDataValueOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-server-sdk Show documentation
Show all versions of java-server-sdk Show documentation
Server side SDK to interact with DevCycle.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: variableForUserParams.proto
package com.devcycle.sdk.server.local.protobuf;
public interface CustomDataValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:CustomDataValue)
com.google.protobuf.MessageOrBuilder {
/**
* .CustomDataType type = 1;
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
* .CustomDataType type = 1;
* @return The type.
*/
com.devcycle.sdk.server.local.protobuf.CustomDataType getType();
/**
* bool boolValue = 2;
* @return The boolValue.
*/
boolean getBoolValue();
/**
* double doubleValue = 3;
* @return The doubleValue.
*/
double getDoubleValue();
/**
* string stringValue = 4;
* @return The stringValue.
*/
java.lang.String getStringValue();
/**
* string stringValue = 4;
* @return The bytes for stringValue.
*/
com.google.protobuf.ByteString
getStringValueBytes();
}