Java Calendar Millisecond hasZeroMilliSeconds(Calendar cal)

Here you can find the source of hasZeroMilliSeconds(Calendar cal)

Description

has Zero Milli Seconds

License

Apache License

Declaration

private static boolean hasZeroMilliSeconds(Calendar cal) 

Method Source Code

//package com.java2s;
/**/* w  w  w .j  a  v a2 s. com*/
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 {
    private static boolean hasZeroMilliSeconds(Calendar cal) {
        return !cal.isSet(Calendar.MILLISECOND) || cal.get(Calendar.MILLISECOND) == 0;
    }
}

Related

  1. getCalendarXDaysFromY(long startTimeInMillis, int daysFromStartDate)
  2. getDateMilliseconds(Calendar pDate)
  3. getLastMilli(Calendar cal)
  4. getMillisecond(Calendar calendar)
  5. getMilliSinceMidnight(Calendar arg)
  6. newCalendar(long timeInMillis)
  7. setCalendar(Calendar calendar, int wholeDays, int millisecondsInDay, boolean use1904windowing)
  8. setCalendar(Calendar calendar, int wholeDays, int millisecondsInDay, boolean use1904windowing, boolean roundSeconds)
  9. setCalendarTime(Calendar inCalendar, int hr, int min, int sec, int milliSec)