public static enum HubDelegate.HubCurrentStateEnum extends Enum<HubDelegate.HubCurrentStateEnum>
Example: when Hub.AO is changed, and the "ripple affect" with other Hub changes. A hub that is updated/changed might access another Hub that has not been updated yet. This is because the thread that makes the change calls the listeners sequentially.
Enum Constant and Description |
---|
DetailDisconectedFromMaster |
DetailHubNotSameAsMasterObject |
HubMergerNotUpdated |
InSync |
Modifier and Type | Method and Description |
---|---|
static HubDelegate.HubCurrentStateEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HubDelegate.HubCurrentStateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HubDelegate.HubCurrentStateEnum InSync
public static final HubDelegate.HubCurrentStateEnum DetailDisconectedFromMaster
public static final HubDelegate.HubCurrentStateEnum DetailHubNotSameAsMasterObject
public static final HubDelegate.HubCurrentStateEnum HubMergerNotUpdated
public static HubDelegate.HubCurrentStateEnum[] values()
for (HubDelegate.HubCurrentStateEnum c : HubDelegate.HubCurrentStateEnum.values()) System.out.println(c);
public static HubDelegate.HubCurrentStateEnum 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 © 1999–2025 ViaOA. All rights reserved.