Modifier and Type | Field and Description |
---|---|
static org.joda.time.LocalDate |
END_OF_TIME |
Constructor and Description |
---|
TKUtils() |
Modifier and Type | Method and Description |
---|---|
static String |
arrayToString(String[] stringArray) |
static BigDecimal |
cleanNumeric(String value) |
static org.joda.time.DateTime |
convertDateStringToDateTime(String dateStr,
String timeStr)
Creates a Timestamp object using Jodatime as an intermediate data structure
from the provided date and time string.
|
static org.joda.time.DateTime |
convertDateStringToDateTimeWithoutZone(String dateStr,
String timeStr) |
static org.joda.time.DateTime |
convertDateStringToDateTimeWithTimeZone(String dateStr,
String timeStr,
org.joda.time.DateTimeZone dtz) |
static org.joda.time.DateTime |
convertDateTimeToDifferentTimezone(org.joda.time.DateTime aDateTime,
org.joda.time.DateTimeZone fromTimeZone,
org.joda.time.DateTimeZone toTimeZone) |
static long |
convertHoursToMillis(BigDecimal hours) |
static BigDecimal |
convertMillisToDays(long millis) |
static BigDecimal |
convertMillisToHours(long millis) |
static BigDecimal |
convertMillisToMinutes(long millis) |
static int |
convertMillisToWholeDays(long millis) |
static BigDecimal |
convertMinutesToHours(BigDecimal minutes) |
static org.joda.time.DateTime |
convertTimeForDifferentTimeZone(org.joda.time.DateTime aDateTime,
org.joda.time.DateTimeZone fromTimeZone,
org.joda.time.DateTimeZone toTimeZone) |
static List<org.joda.time.Interval> |
createDaySpan(org.joda.time.DateTime beginDateTime,
org.joda.time.DateTime endDateTime,
org.joda.time.DateTimeZone zone) |
static Map<String,String> |
formatAssignmentDescription(Assignment assignment) |
static String |
formatDate(org.joda.time.LocalDate localDate) |
static org.joda.time.LocalDate |
formatDateString(String date) |
static String |
formatDateTimeLong(org.joda.time.DateTime dateTime) |
static String |
formatDateTimeShort(org.joda.time.DateTime dateTime) |
static org.joda.time.DateTime |
formatDateTimeString(String dateTime) |
static org.joda.time.DateTime |
formatDateTimeStringNoTimezone(String dateTime) |
static String |
formatDateTimeWithTZ(org.joda.time.DateTime dateTime) |
static String |
formatTimeShort(String dateString) |
static Assignment |
getAssignmentWithKey(List<Assignment> assignments,
AssignmentDescriptionKey assignmentDescriptionKey) |
static Timestamp |
getCurrentTimestamp() |
static String |
getDayOfMonthFromDateString(String dateString) |
static long |
getDaysBetween(org.joda.time.LocalDate startDate,
org.joda.time.LocalDate endDate) |
static List<org.joda.time.Interval> |
getDaySpanForCalendarEntry(CalendarEntry calendarEntry) |
static List<org.joda.time.Interval> |
getDaySpanForCalendarEntry(CalendarEntry calendarEntry,
org.joda.time.DateTimeZone timeZone)
Constructs a list of Day Spans for the pay calendar entry provided.
|
static String |
getDocumentDescription(String principalId,
org.joda.time.LocalDate effectiveDate) |
static String |
getFromDateString(String dateString)
Returns effectiveDate "from" date that's passed in through dateString.
|
static List<org.joda.time.Interval> |
getFullWeekDaySpanForCalendarEntry(CalendarEntry calendarEntry) |
static List<org.joda.time.Interval> |
getFullWeekDaySpanForCalendarEntry(CalendarEntry calendarEntry,
org.joda.time.DateTimeZone timeZone) |
static BigDecimal |
getHoursBetween(long start,
long end) |
static BigDecimal |
getHoursFromMinutes(BigDecimal minutes) |
static String |
getIPAddressFromRequest(javax.servlet.http.HttpServletRequest request) |
static String |
getIPAddressFromRequest(String remoteAddress) |
static String |
getIPNumber() |
static BigDecimal |
getMinutesBetween(org.joda.time.DateTime start,
org.joda.time.DateTime end) |
static String |
getRandomColor(Set<String> randomColors) |
static int |
getSessionTimeoutTime()
Get the session timeout time.
|
static String |
getSingleGroupKey() |
static String |
getSingleGroupKey(org.joda.time.LocalDate asOfDate) |
static org.joda.time.DateTimeZone |
getSystemDateTimeZone() |
static String |
getSystemTimeZone() |
static String |
getTimezoneOffset(org.joda.time.DateTime date)
Method to obtain the timezone offset string for the specified date time.
|
static String |
getToDateString(String dateString)
Returns effectiveDate "to" date that's passed in through dateString.
|
static int |
getWorkDays(org.joda.time.DateTime startDate,
org.joda.time.DateTime endDate) |
static boolean |
isDateEqualOrBetween(org.joda.time.DateTime date,
String searchDateString) |
static boolean |
isVirtualWorkDay(org.joda.time.DateTime beginPeriodDateTime) |
static boolean |
isWeekend(org.joda.time.DateTime date) |
static boolean |
singleGroupKeyExists() |
static Timestamp |
subtractOneSecondFromTimestamp(Timestamp originalTimestamp) |
public static final org.joda.time.LocalDate END_OF_TIME
public TKUtils()
public static boolean singleGroupKeyExists()
public static String getSingleGroupKey(org.joda.time.LocalDate asOfDate)
public static String getSingleGroupKey()
public static String getDayOfMonthFromDateString(String dateString)
dateString
- the format has to be mm/dd/yyyypublic static String getSystemTimeZone()
public static org.joda.time.DateTimeZone getSystemDateTimeZone()
public static long getDaysBetween(org.joda.time.LocalDate startDate, org.joda.time.LocalDate endDate)
public static BigDecimal getHoursBetween(long start, long end)
public static BigDecimal getMinutesBetween(org.joda.time.DateTime start, org.joda.time.DateTime end)
public static BigDecimal getHoursFromMinutes(BigDecimal minutes)
public static Map<String,String> formatAssignmentDescription(Assignment assignment)
public static List<org.joda.time.Interval> getDaySpanForCalendarEntry(CalendarEntry calendarEntry, org.joda.time.DateTimeZone timeZone)
calendarEntry
- timeZone
- public static long convertHoursToMillis(BigDecimal hours)
public static BigDecimal convertMillisToHours(long millis)
public static BigDecimal convertMillisToMinutes(long millis)
public static BigDecimal convertMillisToDays(long millis)
public static BigDecimal convertMinutesToHours(BigDecimal minutes)
public static int convertMillisToWholeDays(long millis)
public static boolean isVirtualWorkDay(org.joda.time.DateTime beginPeriodDateTime)
public static org.joda.time.DateTime convertDateStringToDateTime(String dateStr, String timeStr)
dateStr
- (the format is 01/01/2011)timeStr
- (the format is 8:0)public static org.joda.time.DateTime convertDateStringToDateTimeWithTimeZone(String dateStr, String timeStr, org.joda.time.DateTimeZone dtz)
public static org.joda.time.DateTime convertDateStringToDateTimeWithoutZone(String dateStr, String timeStr)
public static String getIPAddressFromRequest(String remoteAddress)
public static String getIPNumber()
public static String getIPAddressFromRequest(javax.servlet.http.HttpServletRequest request)
public static Timestamp subtractOneSecondFromTimestamp(Timestamp originalTimestamp)
public static String formatDate(org.joda.time.LocalDate localDate)
public static String formatDateTimeShort(org.joda.time.DateTime dateTime)
public static String formatDateTimeLong(org.joda.time.DateTime dateTime)
public static String formatDateTimeWithTZ(org.joda.time.DateTime dateTime)
public static org.joda.time.LocalDate formatDateString(String date)
public static String formatTimeShort(String dateString)
public static org.joda.time.DateTime formatDateTimeString(String dateTime)
public static org.joda.time.DateTime formatDateTimeStringNoTimezone(String dateTime)
public static String getTimezoneOffset(org.joda.time.DateTime date)
date
- public static String arrayToString(String[] stringArray)
public static int getSessionTimeoutTime()
public static Timestamp getCurrentTimestamp()
public static List<org.joda.time.Interval> createDaySpan(org.joda.time.DateTime beginDateTime, org.joda.time.DateTime endDateTime, org.joda.time.DateTimeZone zone)
public static List<org.joda.time.Interval> getDaySpanForCalendarEntry(CalendarEntry calendarEntry)
public static List<org.joda.time.Interval> getFullWeekDaySpanForCalendarEntry(CalendarEntry calendarEntry)
public static List<org.joda.time.Interval> getFullWeekDaySpanForCalendarEntry(CalendarEntry calendarEntry, org.joda.time.DateTimeZone timeZone)
public static int getWorkDays(org.joda.time.DateTime startDate, org.joda.time.DateTime endDate)
public static boolean isWeekend(org.joda.time.DateTime date)
public static String getFromDateString(String dateString)
dateString
- public static String getToDateString(String dateString)
dateString
- public static boolean isDateEqualOrBetween(org.joda.time.DateTime date, String searchDateString)
public static String getRandomColor(Set<String> randomColors)
public static BigDecimal cleanNumeric(String value)
public static String getDocumentDescription(String principalId, org.joda.time.LocalDate effectiveDate)
public static org.joda.time.DateTime convertTimeForDifferentTimeZone(org.joda.time.DateTime aDateTime, org.joda.time.DateTimeZone fromTimeZone, org.joda.time.DateTimeZone toTimeZone)
public static org.joda.time.DateTime convertDateTimeToDifferentTimezone(org.joda.time.DateTime aDateTime, org.joda.time.DateTimeZone fromTimeZone, org.joda.time.DateTimeZone toTimeZone)
public static Assignment getAssignmentWithKey(List<Assignment> assignments, AssignmentDescriptionKey assignmentDescriptionKey)
Copyright © 2004–2015 The Kuali Foundation. All rights reserved.