Java tutorial
//package com.java2s; //License from project: Open Source License import java.util.Calendar; public class Main { public static boolean isDisturbTime(Calendar c) { int hours = c.get(Calendar.HOUR_OF_DAY); return hours >= 23 | hours < 6; } }