
com.venky.swf.db.annotations.column.defaulting.StandardDefault Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swf-db Show documentation
Show all versions of swf-db Show documentation
Succinct Web Framework - Db
The newest version!
package com.venky.swf.db.annotations.column.defaulting;
public enum StandardDefault {
NONE,
NULL,
ZERO,
ONE,
BOOLEAN_TRUE,
BOOLEAN_FALSE,
SOME_VALUE,
CURRENT_USER() {
public boolean isComputed(){
return true;
}
},
CURRENT_DATE(){
public boolean isComputed(){
return true;
}
},
CURRENT_TIMESTAMP(){
public boolean isComputed(){
return true;
}
},
CURRENT_DAY_OF_MONTH() {
public boolean isComputed(){
return true;
}
},
CURRENT_MONTH() {
public boolean isComputed(){
return true;
}
},
CURRENT_YEAR() {
public boolean isComputed(){
return true;
}
};
public boolean isComputed(){
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy