AgeRange.java

package com.datengaertnerei.test.dataservice.person;

/**
 * Age range enumeration to get more specific test data
 *
 */
public enum AgeRange {
	
	/**
	 * all ages
	 */
	ALL, 
	/**
	 * 18 - 60 y/o
	 */
	ADULT, 
	/**
	 * > 60 y/o
	 */
	SENIOR, 
	/**
	 * < 18 y/o
	 */
	MINOR
}