Home | History | Annotate | Download | only in calendar

Lines Matching refs:column

703      * Determine whether the column position is Saturday or not.
705 * @param column the column position
707 * @return true if the column is Saturday position
709 public static boolean isSaturday(int column, int firstDayOfWeek) {
710 return (firstDayOfWeek == Time.SUNDAY && column == 6)
711 || (firstDayOfWeek == Time.MONDAY && column == 5)
712 || (firstDayOfWeek == Time.SATURDAY && column == 0);
716 * Determine whether the column position is Sunday or not.
718 * @param column the column position
720 * @return true if the column is Sunday position
722 public static boolean isSunday(int column, int firstDayOfWeek) {
723 return (firstDayOfWeek == Time.SUNDAY && column == 0)
724 || (firstDayOfWeek == Time.MONDAY && column == 6)
725 || (firstDayOfWeek == Time.SATURDAY && column == 1);
783 * @param nameIndex The column of the query that contains the display name