es un ejemplo muy fácil espero que te sirva
Código PHP:
public class ctt{
public static final int id = 1;
public static final int nombre = 2;
}
Código PHP:
public class UsarCtt {
private void uno(int a){
if(a == ctt.id)
System.out.println("hola soy id");
else if(a == ctt.nombre)
System.out.println("hola soy nombre");
else
System.out.println("error");
}
public static void main(String[] args) {
UsarCtt uc = new UsarCtt();
uc.uno(2);
}
}
si deseas utilizar más variables estáticas entonces solo lo adiciones a las class ctt