
org.apache.hadoop.conf.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parquet-floor Show documentation
Show all versions of parquet-floor Show documentation
A lightweight Java library that facilitates reading and writing Apache Parquet files without Hadoop dependencies.
package org.apache.hadoop.conf;
public class Configuration {
public boolean getBoolean(String x, boolean y) {
return y;
}
public void setBoolean(String x, boolean y) {
}
public int getInt(String x, int y) {
return y;
}
public String get(String x) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy