本文整理匯總了Java中org.kitesdk.data.Format類的典型用法代碼示例。如果您正苦於以下問題:Java Format類的具體用法?Java Format怎麽用?Java Format使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Format類屬於org.kitesdk.data包,在下文中一共展示了Format類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createDataset
import org.kitesdk.data.Format; //導入依賴的package包/類
/**
* Creates a new dataset.
*/
public static Dataset<GenericRecord> createDataset(String uri, org.apache.sqoop.schema.Schema schema,
FileFormat format) {
Schema datasetSchema = KiteDataTypeUtil.createAvroSchema(schema);
Format datasetFormat = KiteDataTypeUtil.toFormat(format);
DatasetDescriptor descriptor = new DatasetDescriptor.Builder()
.property("kite.allow.csv", "true")
.schema(datasetSchema)
.format(datasetFormat)
.build();
return Datasets.create(uri, descriptor);
}
示例2: toFormat
import org.kitesdk.data.Format; //導入依賴的package包/類
/**
* Converts Sqoop (user input) FileFormat to Kite supported file format.
*/
public static Format toFormat(FileFormat format)
throws IllegalArgumentException {
if (!TO_FORMAT_LOOKUP.containsKey(format)) {
throw new IllegalArgumentException(
"Unsupported File Output Format " + format);
}
return TO_FORMAT_LOOKUP.get(format);
}