Java Calendar Second isFirstAfterSecond(Calendar first, Calendar second)

Here you can find the source of isFirstAfterSecond(Calendar first, Calendar second)

Description

is First After Second

License

Apache License

Declaration

public static boolean isFirstAfterSecond(Calendar first, Calendar second) 

Method Source Code


//package com.java2s;
/*/*from  ww  w .ja va  2s  .  c  om*/
 * Copyright 2011 Kazuhiro Sera
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

import java.util.Calendar;

public class Main {
    public static boolean isFirstAfterSecond(Calendar first, Calendar second) {
        long firstValue = first.getTimeInMillis();
        long secondValue = second.getTimeInMillis();
        return (firstValue > secondValue) ? true : false;
    }
}

Related

  1. getSecondsSinceMidnight(final Calendar time)
  2. getTimeInSeconds(Calendar t)
  3. getTimeSeconds(Calendar cal)
  4. getTimestampInDayFirstSecond(final Calendar calendar)
  5. hasPassed10Second(Calendar time)
  6. isSameSecond(Calendar c1, Calendar c2)
  7. moveToCalendarSecondJustFor(Calendar cal, int second)
  8. moveToCalendarSecondTerminal(Calendar cal)
  9. moveToCalendarSecondTerminalFor(Calendar cal, int second)