Package org.yaac.shared.property

Examples of org.yaac.shared.property.DatePropertyInfo


    } else if (obj instanceof String) {
      result = new StringPropertyInfo((String)obj);
    } else if (obj instanceof Category) {
      result = new StringPropertyInfo(((Category) obj).getCategory());
    } else if (obj instanceof Date) {
      result = new DatePropertyInfo((Date)obj);
    } else if (obj instanceof Email) {
      result = new StringPropertyInfo(((Email) obj).getEmail());
    } else if (obj instanceof Long) {  // short, int, long are all stored as long value
      result = new LongPropertyInfo((Long)obj);
    } else if (obj instanceof Double) {// float and double are both stored as 64-bit double precision, IEEE 754
View Full Code Here

TOP

Related Classes of org.yaac.shared.property.DatePropertyInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.