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

com.vk.api.sdk.queries.ReportReason Maven / Gradle / Ivy

Go to download

Java library for VK API interaction, includes OAuth 2.0 authorization and API methods.

There is a newer version: 1.0.16
Show newest version
package com.vk.api.sdk.queries;

/**
 * Created by Anton Tsivarev on 22.09.16.
 */
public enum ReportReason implements EnumParam {

    SPAM("0"),
    CHILD_PORN("1"),
    EXTREMISM("2"),
    VIOLINCE("3"),
    DRUGS("4"),
    ADULT_MATERIALS("5"),
    INSULT("6");

    private final String value;

    ReportReason(String value) {
        this.value = value;
    }

    @Override
    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy