eXo Kernel :: MC Kernel Integration :: Implementation 2.4.1-GA

org.exoplatform.container.mc.impl
Enum MCInjectionMode

java.lang.Object
  extended by java.lang.Enum<MCInjectionMode>
      extended by org.exoplatform.container.mc.impl.MCInjectionMode
All Implemented Interfaces:
Serializable, Comparable<MCInjectionMode>

public enum MCInjectionMode
extends Enum<MCInjectionMode>

Annotation that represents injection mode. One-to-one mapped to org.jboss.beans.info.spi.BeanAccessMode

Author:
Marko Strukelj

Enum Constant Summary
ALL
          Field and method injections
FIELDS
          Disable field injections (default)
STANDARD
          Try setter injection first, if no setter found, fallback to field
 
Method Summary
static MCInjectionMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MCInjectionMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ALL

public static final MCInjectionMode ALL
Field and method injections


FIELDS

public static final MCInjectionMode FIELDS
Disable field injections (default)


STANDARD

public static final MCInjectionMode STANDARD
Try setter injection first, if no setter found, fallback to field

Method Detail

values

public static MCInjectionMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MCInjectionMode c : MCInjectionMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MCInjectionMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

eXo Kernel :: MC Kernel Integration :: Implementation 2.4.1-GA

Copyright © 2012 eXo Platform SAS. All Rights Reserved.