Ejemplo n.º 1
0
 /* Returns the minutes of the given datetime value.
  */
 public static SchemaTypeNumber minuteFromDuration(SchemaDuration value) {
   return new SchemaInt(value.isNegative() ? -value.getMinute() : value.getMinute());
 }