All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xenoamess.commons.primitive.Primitive Maven / Gradle / Ivy

There is a newer version: 0.13.1
Show newest version
package com.xenoamess.commons.primitive;

/**
 * This interface is used to mark Primitive classes.
 *
 * @author XenoAmess
 * @version 0.8.0
 */
public interface Primitive {
    int INT_DEFAULT = 0;
    long LONG_DEFAULT = 0;
    byte BYTE_DEFAULT = 0;
    short SHORT_DEFAULT = 0;
    char CHAR_DEFAULT = 0;
    float FLOAT_DEFAULT = 0;
    double DOUBLE_DEFAULT = 0;
    boolean BOOLEAN_DEFAULT = false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy