I am guessing you mean as a string format. Well you decide that yourself because you need to transform the string date into a Date manually using the SimpleDateFormat class. Example:
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd");
Date date = sdf.parse("2006-06-30");