public enum SeataInterceptorPosition extends Enum<SeataInterceptorPosition>
| Enum Constant and Description |
|---|
AfterTransaction
Must be after/lowerThan/insideOf TransactionInterceptor.
|
Any
Any position.
|
BeforeTransaction
Must be before/higherThan/outsideOf TransactionInterceptor.
|
| Modifier and Type | Method and Description |
|---|---|
static SeataInterceptorPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeataInterceptorPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeataInterceptorPosition Any
public static final SeataInterceptorPosition BeforeTransaction
public static final SeataInterceptorPosition AfterTransaction
public static SeataInterceptorPosition[] values()
for (SeataInterceptorPosition c : SeataInterceptorPosition.values()) System.out.println(c);
public static SeataInterceptorPosition valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022 Seata. All rights reserved.