woolpack.config
クラス ConfigConstants

java.lang.Object
  上位を拡張 woolpack.config.ConfigConstants

public class ConfigConstants
extends java.lang.Object

定数の集まり。

作成者:
nakamura

フィールドの概要
static ConfigExpression MAKE_MAP
          HashMapを生成してConfigContext.setMap(Map)に設定するConfigExpression
static ConfigExpression NULL
          null オブジェクト役のConfigExpression
static ConfigExpression TO_UNMODIFIABLE_MAP
          書き込み禁止のMapConfigContext.setMap(Map)に再設定するConfigExpression
static ConfigExpression TO_UNOVERWRITABLE_MAP
          上書き禁止のMapConfigContext.setMap(Map)に再設定するConfigExpression
 
メソッドの概要
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

NULL

public static final ConfigExpression NULL
null オブジェクト役のConfigExpression


TO_UNMODIFIABLE_MAP

public static final ConfigExpression TO_UNMODIFIABLE_MAP
書き込み禁止のMapConfigContext.setMap(Map)に再設定するConfigExpressionConfigExpression.interpret(ConfigContext)は引数またはConfigContext.getMap()が null の場合にNullPointerExceptionを投げる。


TO_UNOVERWRITABLE_MAP

public static final ConfigExpression TO_UNOVERWRITABLE_MAP
上書き禁止のMapConfigContext.setMap(Map)に再設定するConfigExpressionConfigExpression.interpret(ConfigContext)は引数またはConfigContext.getMap()が null の場合にNullPointerExceptionを投げる。


MAKE_MAP

public static final ConfigExpression MAKE_MAP
HashMapを生成してConfigContext.setMap(Map)に設定するConfigExpressionConfigExpression.interpret(ConfigContext)は引数が null の場合にNullPointerExceptionを投げる。