/*
 * Copyright 2010-2011 Kevin Seim
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
//package org.beanio.util;
import java.math.*;
import java.util.*;
/**
 * Utility class for working with Java types supported by BeanIO.
 * 
 * @author Kevin Seim
 * @since 1.0
 */
public class TypeUtil {
    /** 
     * Alias for a java.util.Date that includes both date and time information.
     * If a type handler is registered using this alias, the registered type handler will
     * become the default type handler for all Date classes.
     */
    public static final String DATETIME_ALIAS = "datetime";
    /** Alias for the java.util.Date class that includes only date information */
    public static final String DATE_ALIAS = "date";
    /** Alias for a java.util.Date that only includes only time information */
    public static final String TIME_ALIAS = "time";
    
    /** Class type used to indicate a Java array */
    public static final Class extends Collection