com.antiaction.raptor.dao.AttributePoke Maven / Gradle / Ivy
/*
* Created on 28/08/2010
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.antiaction.raptor.dao;
import java.sql.Timestamp;
public class AttributePoke {
public static Integer getInteger(AttributeBase attribute) {
return attribute.val_int;
}
public static Timestamp getTimestamp(AttributeBase attribute) {
return attribute.val_datetime;
}
public static String getVarchar(AttributeBase attribute) {
return attribute.val_varchar;
}
public static String getText(AttributeBase attribute) {
return attribute.val_text;
}
/*
public List getOptions() {
throw new UnsupportedOperationException();
}
public List getExcluded() {
throw new UnsupportedOperationException();
}
public List getIncluded() {
throw new UnsupportedOperationException();
}
*/
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy