Package org.apache.iceberg
Class EnvironmentContext
- java.lang.Object
-
- org.apache.iceberg.EnvironmentContext
-
public class EnvironmentContext extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringENGINE_NAMEstatic java.lang.StringENGINE_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.Map<java.lang.String,java.lang.String>get()Returns aMapof all properties.static voidput(java.lang.String key, java.lang.String value)Will add the given key/value pair in a global properties map.
-
-
-
Field Detail
-
ENGINE_NAME
public static final java.lang.String ENGINE_NAME
- See Also:
- Constant Field Values
-
ENGINE_VERSION
public static final java.lang.String ENGINE_VERSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
get
public static java.util.Map<java.lang.String,java.lang.String> get()
Returns aMapof all properties.- Returns:
- A
Mapof all properties.
-
put
public static void put(java.lang.String key, java.lang.String value)Will add the given key/value pair in a global properties map.- Parameters:
key- The key to addvalue- The value to add
-
-