Package org.typeexit.kettle.plugin.steps.ruby

Examples of org.typeexit.kettle.plugin.steps.ruby.RubyStepMarshalledObject


        case ValueMeta.TYPE_NUMBER:
          javaValue = JavaEmbedUtils.rubyToJava(data.runtime, rubyVal, Double.class);
          break;
        case ValueMeta.TYPE_SERIALIZABLE:
          String marshalled = getMarshal().callMethod(data.runtime.getCurrentContext(), "dump", rubyVal).toString();
          javaValue = new RubyStepMarshalledObject(marshalled);
          break;
        case ValueMeta.TYPE_BINARY:
          // TODO: provide meaningful error message if this fails
          RubyArray arr = rubyVal.convertToArray();
View Full Code Here

TOP

Related Classes of org.typeexit.kettle.plugin.steps.ruby.RubyStepMarshalledObject

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.