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

com.uid2.client.IdentityScope Maven / Gradle / Ivy

package com.uid2.client;

public enum IdentityScope {
    UID2(0),
    EUID(1);

    public final int value;

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

    public static IdentityScope fromValue(int value) {
        switch (value) {
            case 0: return UID2;
            case 1: return EUID;
            default: throw new IllegalArgumentException();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy