All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.venky.swf.db.annotations.column.defaulting.StandardDefault Maven / Gradle / Ivy

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