Java Today getTodayEnd()

Here you can find the source of getTodayEnd()

Description

get Today End

License

Apache License

Declaration

public static Calendar getTodayEnd() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.Calendar;

public class Main {
    public static Calendar getTodayEnd() {
        Calendar todayEnd = Calendar.getInstance();
        todayEnd.set(Calendar.HOUR_OF_DAY, 23);
        todayEnd.set(Calendar.MINUTE, 59);
        todayEnd.set(Calendar.SECOND, 59);
        return todayEnd;
    }//from  w w w  .j a  va  2  s.  c o m
}

Related

  1. getTodayDate()
  2. getTodayDateAsString()
  3. getTodayDateInString()
  4. getTodayDbFormat()
  5. getTodayDisplayString()
  6. getTodayEnd()
  7. getToDayEndTime()
  8. getTodayFolder()
  9. getTodayFormat(String format)