net.ranides.assira.annotations
Enum Meta.GenerationStrategy

java.lang.Object
  extended by java.lang.Enum<Meta.GenerationStrategy>
      extended by net.ranides.assira.annotations.Meta.GenerationStrategy
All Implemented Interfaces:
Serializable, Comparable<Meta.GenerationStrategy>
Enclosing class:
Meta

public static enum Meta.GenerationStrategy
extends Enum<Meta.GenerationStrategy>

W jaki sposób kod jest generowany.


Enum Constant Summary
AFTER
          Automatycznie, wstawiany po wywołaniu metody
BEFORE
          Automatycznie, wstawiany przed wywołaniem metody
MANUAL
          Programista użył w kodzie metody jawnie generatora
REPLACE
          Automatycznie, zastępuje istniejącą implementację metody
 
Method Summary
static Meta.GenerationStrategy valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Meta.GenerationStrategy[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BEFORE

public static final Meta.GenerationStrategy BEFORE
Automatycznie, wstawiany przed wywołaniem metody


AFTER

public static final Meta.GenerationStrategy AFTER
Automatycznie, wstawiany po wywołaniu metody


REPLACE

public static final Meta.GenerationStrategy REPLACE
Automatycznie, zastępuje istniejącą implementację metody


MANUAL

public static final Meta.GenerationStrategy MANUAL
Programista użył w kodzie metody jawnie generatora

Method Detail

values

public static Meta.GenerationStrategy[] 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 (Meta.GenerationStrategy c : Meta.GenerationStrategy.values())
    System.out.println(c);

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

valueOf

public static Meta.GenerationStrategy 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


Copyright © 2013. All Rights Reserved.