All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vk.api.sdk.objects.enums.MarketRev Maven / Gradle / Ivy

package com.vk.api.sdk.objects.enums;

import com.google.gson.annotations.SerializedName;
import com.vk.api.sdk.queries.EnumParam;

/**
 * '0' — do not use reverse order, '1' — use reverse order
 */
public enum MarketRev implements EnumParam {
    @SerializedName("0")
    NORMAL(0),

    @SerializedName("1")
    REVERSE(1);

    private final Integer value;

    MarketRev(Integer value) {
        this.value = value;
    }

    public String getValue() {
        return value.toString();
    }

    @Override
    public String toString() {
        return value.toString().toLowerCase();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy