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

com.github.alexdlaird.ngrok.protocol.Region Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2021-2024 Alex Laird
 *
 * SPDX-License-Identifier: MIT
 */

package com.github.alexdlaird.ngrok.protocol;

import com.google.gson.annotations.SerializedName;

/**
 * An enum representing ngrok's valid regions, as defined in
 * ngrok's docs.
 */
public enum Region {

    @SerializedName("us")
    US,
    @SerializedName("us-cal-1")
    US_CAL_1,
    @SerializedName("eu")
    EU,
    @SerializedName("ap")
    AP,
    @SerializedName("au")
    AU,
    @SerializedName("sa")
    SA,
    @SerializedName("jp")
    JP,
    @SerializedName("in")
    IN;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy