Greetings,
I came to a legacy code in C++ that is using a Flag and later updating the status of the flag based on the reads done:
Main file:
#define VINCULACION 0x00000004L
#define DET_VINCULACION 0x00000008L
long unsigned FlagRead ;
int formerMethod(){
if ((FlagRead & VINCULACION)==0) ReadVinculacion();
//... DO MORE
}
int ReadVinculacion(){
//.. Do DB operations to read Vinculacion variables.
FlagRead|=VINCULACION;
return 1;
}
//.. Same similar methods to ensure reading DET_VINCULACION but not doing it twice.
Now developing in Java I am not using Constants with Integers or Longs as its good practice to use enums.
Is it there a performance wise and reliable way to do the same task using enums under java?.
Thanks!