Package org.springframework.xd.tuple

Examples of org.springframework.xd.tuple.Tuple


      for (Object item : (List<?>) value) {
        processValueForCounter(counterName, item, path);
      }
    }
    else if (value instanceof Tuple) {
      Tuple t = (Tuple) value;
      if (t.hasFieldName(key)) {
        result = t.getValue(key);
      }
    }
    else if (value instanceof Map) {
      result = ((Map<?, ?>) value).get(key);
    }
View Full Code Here

TOP

Related Classes of org.springframework.xd.tuple.Tuple

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.