io.getstream.core.Region Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-java Show documentation
Show all versions of stream-java Show documentation
Stream Feeds Java Client for backend and android integrations
package io.getstream.core;
public enum Region {
US_EAST("us-east-api"),
TOKYO("tokyo-api"),
DUBLIN("dublin-api"),
SINGAPORE("singapore-api"),
CANADA("ca-central-1");
private final String region;
Region(String region) {
this.region = region;
}
@Override
public String toString() {
return region;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy