Copyright (c) 2012 Jesse Rosalia
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"),
to deal in the Sof...
If you think the Android project ormada listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package org.ormada.dialect;
//fromwww.java2s.com/**
* This interface defines an API for database specific
* values structures. These structures are built
* for each entity that will be saved, and passed
* to the Dialect for persistence.
*
* @author Jesse Rosalia
*
*/publicinterface ValueSet {
void put(String key, byte[] value);
void put(String key, Integer value);
void put(String key, Short value);
void put(String key, Long value);
void put(String key, Float value);
void put(String key, Double value);
void put(String key, Boolean value);
void put(String key, Byte value);
void put(String key, String value);
}