Example usage for org.joda.time ReadableDateTime getMinuteOfHour

List of usage examples for org.joda.time ReadableDateTime getMinuteOfHour

Introduction

In this page you can find the example usage for org.joda.time ReadableDateTime getMinuteOfHour.

Prototype

int getMinuteOfHour();

Source Link

Document

Get the minute of hour field value.

Usage

From source file:com.barchart.feed.ddf.message.provider.CodecHelper.java

License:BSD License

/** time zone information is discarded */
static final void encodeTimeStamp(final ReadableDateTime dateTime, final ByteBuffer buffer) {

    // base fields
    buffer.put(DDF_CENTURY); // century
    buffer.put(encodeTimeStampByte(dateTime.getYearOfCentury())); // year
    buffer.put(encodeTimeStampByte(dateTime.getMonthOfYear())); // month
    buffer.put(encodeTimeStampByte(dateTime.getDayOfMonth())); // day
    buffer.put(encodeTimeStampByte(dateTime.getHourOfDay())); // hours
    buffer.put(encodeTimeStampByte(dateTime.getMinuteOfHour())); // minutes
    buffer.put(encodeTimeStampByte(dateTime.getSecondOfMinute())); // seconds

    // milliseconds
    final int millisOfSecond = dateTime.getMillisOfSecond();
    buffer.put((byte) (millisOfSecond & 0xFF)); // low byte
    buffer.put((byte) ((millisOfSecond >>> 8) & 0xFF)); // high byte

}

From source file:com.google.ical.compat.jodatime.DateTimeIteratorFactory.java

License:Apache License

static DateValue dateTimeToDateValue(ReadableDateTime dt) {
    return new DateTimeValueImpl(dt.getYear(), dt.getMonthOfYear(), dt.getDayOfMonth(), dt.getHourOfDay(),
            dt.getMinuteOfHour(), dt.getSecondOfMinute());
}

From source file:se.toxbee.sleepfighter.model.Alarm.java

License:Open Source License

/**
 * Sets the hour, minute and second of this alarm derived from a {@link ReadableDateTime} object.
 *
 * @param time a {@link ReadableDateTime} object.
 *//*from  ww  w.jav a 2 s.  c om*/
public synchronized void setTime(ReadableDateTime time) {
    this.setTime(time.getHourOfDay(), time.getMinuteOfHour(), time.getSecondOfMinute());
}