/**
  * Get the value of the specified time instant.
  *
  * @param instant the time instant in millis to query
  * @return the day of the week extracted from the input
  */
 public int get(long instant) {
   return iChronology.getDayOfWeek(instant);
 }