INNER CODE UNIT · Java

getProfiles

temporalio/sdk-java · temporal-envconfig/src/main/java/io/temporal/envconfig/ClientConfig.java:199

  public Map<String, ClientConfigProfile> getProfiles() {
    return new HashMap<>(profiles);
  }

  @Override
  public boolean equals(Object o) {
    if (o == null || getClass() != o.getClass()) return false;
    ClientConfig that = (ClientConfig) o;
    return Objects.equals(profiles, that.profiles);
  }

  @Override
  public int hashCode() {
    return Objects.hashCode(profiles);
  }

  @Override
  public String toString() {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…