package com.leorz.smartringtone.policy; /** * 11 2302.5 3403.66 4454.75 * */ public class Period { private float start; private float end; public Period(float start, float end) { this.start = start; this.end = end; } public boolean between(float timestap) { return timestap >= start && timestap <= end; } }