net.ranides.assira.annotations
Enum Meta.SyncStrategy

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

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

W jaki sposób wywołanie metody ma być synchronizowane z systemem


Enum Constant Summary
AWT
          Wywołanie w "event dispatching thread" biblioteki AWT
AWT_WAIT
          Wywołanie w "event dispatching thread" biblioteki AWT i oczekiwanie na zakończenie
NONE
          Brak synchronizacji
 
Method Summary
static Meta.SyncStrategy valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Meta.SyncStrategy[] 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

NONE

public static final Meta.SyncStrategy NONE
Brak synchronizacji


AWT

public static final Meta.SyncStrategy AWT
Wywołanie w "event dispatching thread" biblioteki AWT


AWT_WAIT

public static final Meta.SyncStrategy AWT_WAIT
Wywołanie w "event dispatching thread" biblioteki AWT i oczekiwanie na zakończenie

Method Detail

values

public static Meta.SyncStrategy[] 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.SyncStrategy c : Meta.SyncStrategy.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.SyncStrategy 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.