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

com.squarespace.cldrengine.api.TimeData Maven / Gradle / Ivy

The newest version!
package com.squarespace.cldrengine.api;

import java.util.Collections;
import java.util.List;

public class TimeData {

  private String preferred;

  private List allowed;

  public TimeData(String preferred, List allowed) {
    this.preferred = preferred;
    this.allowed = Collections.unmodifiableList(allowed);
  }

  public String preferred() {
    return this.preferred;
  }

  public List allowed() {
    return this.allowed;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy