com.xenoamess.commons.primitive.Primitive Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonx Show documentation
Show all versions of commonx Show documentation
Commonx, a package of Java utility classes for common use.
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;
}