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

com.squarespace.cldrengine.internal.RelativeTimeFields Maven / Gradle / Ivy

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


import com.squarespace.cldrengine.api.PluralType;
import com.squarespace.cldrengine.api.RelativeTimeFieldType;

public class RelativeTimeFields {

  public final Vector1Arrow previous2;
  public final Vector1Arrow previous;
  public final Vector1Arrow current;
  public final Vector1Arrow next;
  public final Vector1Arrow next2;
  public final Vector2Arrow future;
  public final Vector2Arrow past;

  public RelativeTimeFields(
      Vector1Arrow previous2,
      Vector1Arrow previous,
      Vector1Arrow current,
      Vector1Arrow next,
      Vector1Arrow next2,
      Vector2Arrow future,
      Vector2Arrow past) {
    this.previous2 = previous2;
    this.previous = previous;
    this.current = current;
    this.next = next;
    this.next2 = next2;
    this.future = future;
    this.past = past;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy