Package org.apache.flink.api.common.typeutils.CompositeType

Examples of org.apache.flink.api.common.typeutils.CompositeType.FlatFieldDescriptor


            if(fieldType instanceof TupleTypeInfoBase) {
              TupleTypeInfoBase<?> tupleFieldType = (TupleTypeInfoBase<?>) fieldType;
              tupleFieldType.addAllFields(keyId, keyFields);
            } else {
              Preconditions.checkArgument(fieldType instanceof AtomicType, "Wrong field type");
              keyFields.add(new FlatFieldDescriptor(keyId, fieldType));
            }
           
          }
        }
      }
View Full Code Here

TOP

Related Classes of org.apache.flink.api.common.typeutils.CompositeType.FlatFieldDescriptor

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.