Home | History | Annotate | Download | only in calendar

Lines Matching refs:column

704      * Determine whether the column position is Saturday or not.
706 * @param column the column position
708 * @return true if the column is Saturday position
710 public static boolean isSaturday(int column, int firstDayOfWeek) {
711 return (firstDayOfWeek == Time.SUNDAY && column == 6)
712 || (firstDayOfWeek == Time.MONDAY && column == 5)
713 || (firstDayOfWeek == Time.SATURDAY && column == 0);
717 * Determine whether the column position is Sunday or not.
719 * @param column the column position
721 * @return true if the column is Sunday position
723 public static boolean isSunday(int column, int firstDayOfWeek) {
724 return (firstDayOfWeek == Time.SUNDAY && column == 0)
725 || (firstDayOfWeek == Time.MONDAY && column == 6)
726 || (firstDayOfWeek == Time.SATURDAY && column == 1);
784 * @param nameIndex The column of the query that contains the display name