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.String
ENGINE_NAME
static java.lang.String
ENGINE_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 aMap
of all properties.static void
put(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 aMap
of all properties.- Returns:
- A
Map
of 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
-
-