001    /*
002     * To change this template, choose Tools | Templates
003     * and open the template in the editor.
004     */
005    
006    package org.bridj;
007    
008    
009    /**
010     * Interface for Java enumerations that have an int value associated.<br>
011     * Beware: while this is the default, in C++ not all enums are ints (any integral types may be used for enums).
012     * @param <E> type of the enum
013     */
014    public interface IntValuedEnum<E extends Enum<E>> extends ValuedEnum<E> {
015    }