Class Value (0.2.0)

public final class Value extends GeneratedMessageV3 implements ValueOrBuilder

The single value of a rate group or the value of a rate group table's cell. Exactly one of no_shipping, flat_rate, price_percentage, carrier_rateName, subtable_name must be set.

Protobuf type google.shopping.merchant.accounts.v1beta.Value

Implements

ValueOrBuilder

Static Fields

CARRIER_RATE_FIELD_NUMBER

public static final int CARRIER_RATE_FIELD_NUMBER
Field Value
Type Description
int

FLAT_RATE_FIELD_NUMBER

public static final int FLAT_RATE_FIELD_NUMBER
Field Value
Type Description
int

NO_SHIPPING_FIELD_NUMBER

public static final int NO_SHIPPING_FIELD_NUMBER
Field Value
Type Description
int

PRICE_PERCENTAGE_FIELD_NUMBER

public static final int PRICE_PERCENTAGE_FIELD_NUMBER
Field Value
Type Description
int

SUBTABLE_FIELD_NUMBER

public static final int SUBTABLE_FIELD_NUMBER
Field Value
Type Description
int

Static Methods

getDefaultInstance()

public static Value getDefaultInstance()
Returns
Type Description
Value

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

newBuilder()

public static Value.Builder newBuilder()
Returns
Type Description
Value.Builder

newBuilder(Value prototype)

public static Value.Builder newBuilder(Value prototype)
Parameter
Name Description
prototype Value
Returns
Type Description
Value.Builder

parseDelimitedFrom(InputStream input)

public static Value parseDelimitedFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
Value
Exceptions
Type Description
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static Value parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Value
Exceptions
Type Description
IOException

parseFrom(byte[] data)

public static Value parseFrom(byte[] data)
Parameter
Name Description
data byte[]
Returns
Type Description
Value
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static Value parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data byte[]
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Value
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data)

public static Value parseFrom(ByteString data)
Parameter
Name Description
data ByteString
Returns
Type Description
Value
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static Value parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteString
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Value
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static Value parseFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream
Returns
Type Description
Value
Exceptions
Type Description
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static Value parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Value
Exceptions
Type Description
IOException

parseFrom(InputStream input)

public static Value parseFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
Value
Exceptions
Type Description
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static Value parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Value
Exceptions
Type Description
IOException

parseFrom(ByteBuffer data)

public static Value parseFrom(ByteBuffer data)
Parameter
Name Description
data ByteBuffer
Returns
Type Description
Value
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static Value parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteBuffer
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Value
Exceptions
Type Description
InvalidProtocolBufferException

parser()

public static Parser<Value> parser()
Returns
Type Description
Parser<Value>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
Name Description
obj Object
Returns
Type Description
boolean
Overrides

getCarrierRate()

public String getCarrierRate()

The name of a carrier rate referring to a carrier rate defined in the same rate group. Can only be set if all other fields are not set.

optional string carrier_rate = 4;

Returns
Type Description
String

The carrierRate.

getCarrierRateBytes()

public ByteString getCarrierRateBytes()

The name of a carrier rate referring to a carrier rate defined in the same rate group. Can only be set if all other fields are not set.

optional string carrier_rate = 4;

Returns
Type Description
ByteString

The bytes for carrierRate.

getDefaultInstanceForType()

public Value getDefaultInstanceForType()
Returns
Type Description
Value

getFlatRate()

public Price getFlatRate()

A flat rate. Can only be set if all other fields are not set.

optional .google.shopping.type.Price flat_rate = 2;

Returns
Type Description
com.google.shopping.type.Price

The flatRate.

getFlatRateOrBuilder()

public PriceOrBuilder getFlatRateOrBuilder()

A flat rate. Can only be set if all other fields are not set.

optional .google.shopping.type.Price flat_rate = 2;

Returns
Type Description
com.google.shopping.type.PriceOrBuilder

getNoShipping()

public boolean getNoShipping()

If true, then the product can't be shipped. Must be true when set, can only be set if all other fields are not set.

optional bool no_shipping = 1;

Returns
Type Description
boolean

The noShipping.

getParserForType()

public Parser<Value> getParserForType()
Returns
Type Description
Parser<Value>
Overrides

getPricePercentage()

public String getPricePercentage()

A percentage of the price represented as a number in decimal notation (For example, "5.4"). Can only be set if all other fields are not set.

optional string price_percentage = 3;

Returns
Type Description
String

The pricePercentage.

getPricePercentageBytes()

public ByteString getPricePercentageBytes()

A percentage of the price represented as a number in decimal notation (For example, "5.4"). Can only be set if all other fields are not set.

optional string price_percentage = 3;

Returns
Type Description
ByteString

The bytes for pricePercentage.

getSerializedSize()

public int getSerializedSize()
Returns
Type Description
int
Overrides

getSubtable()

public String getSubtable()

The name of a subtable. Can only be set in table cells (For example, not for single values), and only if all other fields are not set.

optional string subtable = 5;

Returns
Type Description
String

The subtable.

getSubtableBytes()

public ByteString getSubtableBytes()

The name of a subtable. Can only be set in table cells (For example, not for single values), and only if all other fields are not set.

optional string subtable = 5;

Returns
Type Description
ByteString

The bytes for subtable.

hasCarrierRate()

public boolean hasCarrierRate()

The name of a carrier rate referring to a carrier rate defined in the same rate group. Can only be set if all other fields are not set.

optional string carrier_rate = 4;

Returns
Type Description
boolean

Whether the carrierRate field is set.

hasFlatRate()

public boolean hasFlatRate()

A flat rate. Can only be set if all other fields are not set.

optional .google.shopping.type.Price flat_rate = 2;

Returns
Type Description
boolean

Whether the flatRate field is set.

hasNoShipping()

public boolean hasNoShipping()

If true, then the product can't be shipped. Must be true when set, can only be set if all other fields are not set.

optional bool no_shipping = 1;

Returns
Type Description
boolean

Whether the noShipping field is set.

hasPricePercentage()

public boolean hasPricePercentage()

A percentage of the price represented as a number in decimal notation (For example, "5.4"). Can only be set if all other fields are not set.

optional string price_percentage = 3;

Returns
Type Description
boolean

Whether the pricePercentage field is set.

hasSubtable()

public boolean hasSubtable()

The name of a subtable. Can only be set in table cells (For example, not for single values), and only if all other fields are not set.

optional string subtable = 5;

Returns
Type Description
boolean

Whether the subtable field is set.

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

newBuilderForType()

public Value.Builder newBuilderForType()
Returns
Type Description
Value.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected Value.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Name Description
parent BuilderParent
Returns
Type Description
Value.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Name Description
unused UnusedPrivateParameter
Returns
Type Description
Object
Overrides

toBuilder()

public Value.Builder toBuilder()
Returns
Type Description
Value.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream
Overrides
Exceptions
Type Description
IOException