While I strongly discourage what you are doing, simply because it makes your application too solid, this works (Edited to avoid cyclic references.) :
public final class Table {
// ===== DECLARE YOUR INSTANCES HERE =====
static public final AppointmentTable Appointment = new AppointmentTable();
// static public final FooTable Foo = new FooTable();
// =======================================
static private abstract class TableImpl {
public abstract String getTableName();
public String toString() { return getTableName(); }
}
// ==== DECLARE YOUR DEFINITIONS BELOW ====
static public class AppointmentTable extends TableImpl {
public final String ID = "appointmentId";
// public final <type> <columnName> = <dbFieldName>;
public String getTableName() { return "appointment"; }
private AppointmentTable() {}
}
// static public class FooTable extends TableImpl { ... }
}
This is as close as you can get from what you want. Note that users won't actually see this design, only programmers will... so who cares?
Also, having access to Table.AppointmentTable is normal. This is how you can access Table.Appointment.ID. But you can't create an instance of it neither extend it, and it is all good.
** Edit **
Why this limitation? Because you can't just use a type and treat it as a value. A type defines the container, not the content. And as much as you can't System.out.println(int); because int is a token (or a type, or a container), you cannot treat a class name as a value that you can echo. Among other things, this is why you have Table.AppointmentTable.class.getSimpleName() (or .getName()).
You can only work with values. A class definition is not a value, it's a definition of a container for a value. The variable of that class definition hold the content of that container, from which you can echo or manipulate.
The same thing goes with unassigned variables. If you try :
int foo;
System.out.println(foo);
the compiler will whine about foo not being initialized. This is because declaring a variable does not assign any content to it (you declare a container of type int named foo), does not make it hold any content unless you assign something (contents) to it.