Class Characteristics

java.lang.Object
org.picocontainer.Characteristics

public final class Characteristics extends Object
Collection of immutable properties, holding behaviour characteristics. See The PicoContainer Website for details on the usage of Characteristics.
Author:
Paul Hammant
See Also:
  • Field Details

    • FALSE

      public static final String FALSE
      Since properties use strings, we supply String constants for Boolean conditions.
      See Also:
    • TRUE

      public static final String TRUE
      Since properties use strings, we supply String constants for Boolean conditions.
      See Also:
    • CDI

      public static final Properties CDI
      Turns on constructor injection.
      See Also:
    • SDI

      public static final Properties SDI
      Turns on Setter Injection.
      See Also:
    • METHOD_INJECTION

      public static final Properties METHOD_INJECTION
      Turns on Method Injection.
    • NO_CACHE

      public static final Properties NO_CACHE
      Turns off Caching of component instances. (Often referred to in other circles as singleton).
      See Also:
    • CACHE

      public static final Properties CACHE
      Turns on Caching of component instances. (Often referred to in other circles as singleton)
      See Also:
    • SYNCHRONIZE

      public static final Properties SYNCHRONIZE
      Turns on synchronized access to the component instance. (Under JDK 1.5 conditions, it will be better to use LOCK instead.
      See Also:
    • NO_SYNCHRONIZE

      public static final Properties NO_SYNCHRONIZE
      Turns off synchronized access to the component instance.
      See Also:
    • LOCK

      public static final Properties LOCK
      Uses a java.util.concurrent.Lock to provide faster access than synchronized.
      See Also:
    • NO_LOCK

      public static final Properties NO_LOCK
      Turns off locking synchronization.
      See Also:
    • SINGLE

      public static final Properties SINGLE
      Synonym for CACHE.
      See Also:
    • NO_SINGLE

      public static final Properties NO_SINGLE
      Synonym for NO_CACHE.
      See Also:
    • HIDE_IMPL

      public static final Properties HIDE_IMPL
      Turns on implementation hiding. You may use the JDK Proxy implementation included in this version, or the ASM-based implementation hiding method included in PicoContainer Gems. However, you cannot use both in a single PicoContainer instance.
    • NO_HIDE_IMPL

      public static final Properties NO_HIDE_IMPL
      Turns off implementation hiding.
      See Also:
    • ENABLE_CIRCULAR

      public static final Properties ENABLE_CIRCULAR
    • NONE

      public static final Properties NONE
    • PROPERTY_APPLYING

      public static final Properties PROPERTY_APPLYING
      Turns on bean-setting property applications where certain simple properties are set after the object is created based.
    • NO_PROPERTY_APPLYING

      public static final Properties NO_PROPERTY_APPLYING
      Turns off bean-setting property applications.
      See Also:
    • AUTOMATIC

      public static final Properties AUTOMATIC
    • USE_NAMES

      public static final Properties USE_NAMES
    • EMJECTION_ENABLED

      public static final Properties EMJECTION_ENABLED
    • GUARD

      public static final Properties GUARD
  • Constructor Details

    • Characteristics

      public Characteristics()
  • Method Details

    • GUARD

      public static final Properties GUARD(String with)
    • immutable

      public static Properties immutable(String name, String value)
      Transforms a single name value pair unto a read only Properties instance.

      Example Usage:

                      Properties readOnly = immutable("oneKey","oneValue"};
                      assert readOnly.getProperty("oneKey") != null);
       
      Parameters:
      name - the property key.
      value - the property value.
      Returns:
      Read Only properties instance.