¿Puede la interfaz tener atributos Java?

interface MyInterface {
	int a = 5; // always public static final
}
PutinsRightNut