1 /*2 * @(#)PrimitiveType.java 1.3 06/07/313 *4 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package javax.lang.model.type;9 10 11 /**12 * Represents a primitive type. These include13 * {@code boolean}, {@code byte}, {@code short}, {@code int},14 * {@code long}, {@code char}, {@code float}, and {@code double}.15 * 16 * @author Joseph D. Darcy17 * @author Scott Seligman18 * @author Peter von der Ahé19 * @version 1.3 06/07/3120 * @since 1.621 */22 public interface PrimitiveType extends TypeMirror {23 }24