Package com.projity.datatype

Examples of com.projity.datatype.Work


    public Object convert(Class type, Object value) throws ConversionException {
      if (value == null)
        return Duration.getInstanceFromDouble(null);
     
      if (value instanceof Number) {
        return new Work(((Number)value).longValue());
      } else if (value instanceof Work) {
        return new Work(((Work)value).longValue());
      } else if (value instanceof Duration) {
        return value;
      } else if (value instanceof String) {
        try {
          return DurationFormat.getWorkInstance().parseObject((String) value);
View Full Code Here

TOP

Related Classes of com.projity.datatype.Work

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.