public enum AssocStatus extends Enum<AssocStatus>
The status of AssocActions and AssocDependencies
| Enum Constant and Description |
|---|
ChangedDirectlyAssocStatus
Explicitly changed (such as by the user).
|
ChangedNoDifferenceAssocStatus
No real change, only forces to evaluate.
|
ChangedTransitivelyAssocStatus
Changed indirectly due to something else changed.
|
ErasedAssocStatus
Dependent-on object erased or action is to be erased.
|
FailedToEvaluateAssocStatus
Unable to evaluate AssocStatus
|
IsUpToDateAssocStatus
Everything is in sync
|
SuppressedAssocStatus
Action evaluation suppressed, treated as if evaluated.
|
| Modifier and Type | Method and Description |
|---|---|
static AssocStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssocStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssocStatus IsUpToDateAssocStatus
Everything is in sync
public static final AssocStatus ChangedDirectlyAssocStatus
Explicitly changed (such as by the user).
public static final AssocStatus ChangedTransitivelyAssocStatus
Changed indirectly due to something else changed.
public static final AssocStatus ChangedNoDifferenceAssocStatus
No real change, only forces to evaluate.
public static final AssocStatus FailedToEvaluateAssocStatus
Unable to evaluate AssocStatus
public static final AssocStatus ErasedAssocStatus
Dependent-on object erased or action is to be erased.
public static final AssocStatus SuppressedAssocStatus
Action evaluation suppressed, treated as if evaluated.
public static AssocStatus[] values()
for (AssocStatus c : AssocStatus.values()) System.out.println(c);
public static AssocStatus 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 (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.