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

com.adjust.sdk.TrackingState Maven / Gradle / Ivy

There is a newer version: 4.38.5
Show newest version
package com.adjust.sdk;

public enum TrackingState {
    OPTED_OUT(1);

    private int value;

    TrackingState(int value) {
        this.value = value;
    }

    public int getValue() {
        return this.value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy