Package com.perforce.p4java.admin
Enum ITriggerEntry.TriggerType
- java.lang.Object
-
- java.lang.Enum<ITriggerEntry.TriggerType>
-
- com.perforce.p4java.admin.ITriggerEntry.TriggerType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ITriggerEntry.TriggerType>
- Enclosing interface:
- ITriggerEntry
public static enum ITriggerEntry.TriggerType extends java.lang.Enum<ITriggerEntry.TriggerType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ITriggerEntry.TriggerType
fromString(java.lang.String triggerType)
Return a suitable Trigger type as inferred from the passed-in string, which is assumed to be the string form of a Depot type.java.lang.String
toString()
static ITriggerEntry.TriggerType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ITriggerEntry.TriggerType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARCHIVE
public static final ITriggerEntry.TriggerType ARCHIVE
-
AUTH_CHECK
public static final ITriggerEntry.TriggerType AUTH_CHECK
-
AUTH_CHECK_2FA
public static final ITriggerEntry.TriggerType AUTH_CHECK_2FA
-
AUTH_CHECK_SSO
public static final ITriggerEntry.TriggerType AUTH_CHECK_SSO
-
AUTH_INIT_2FA
public static final ITriggerEntry.TriggerType AUTH_INIT_2FA
-
AUTH_INVALIDATE
public static final ITriggerEntry.TriggerType AUTH_INVALIDATE
-
AUTH_PRE_2FA
public static final ITriggerEntry.TriggerType AUTH_PRE_2FA
-
AUTH_PRE_SSO
public static final ITriggerEntry.TriggerType AUTH_PRE_SSO
-
AUTH_SET
public static final ITriggerEntry.TriggerType AUTH_SET
-
BGTASK
public static final ITriggerEntry.TriggerType BGTASK
-
CHANGE_COMMIT
public static final ITriggerEntry.TriggerType CHANGE_COMMIT
-
CHANGE_CONTENT
public static final ITriggerEntry.TriggerType CHANGE_CONTENT
-
CHANGE_FAILED
public static final ITriggerEntry.TriggerType CHANGE_FAILED
-
CHANGE_SUBMIT
public static final ITriggerEntry.TriggerType CHANGE_SUBMIT
-
COMMAND
public static final ITriggerEntry.TriggerType COMMAND
-
EDGE_CONTENT
public static final ITriggerEntry.TriggerType EDGE_CONTENT
-
EDGE_SUBMIT
public static final ITriggerEntry.TriggerType EDGE_SUBMIT
-
EXTENSION_RUN
public static final ITriggerEntry.TriggerType EXTENSION_RUN
-
FAILED_OVER
public static final ITriggerEntry.TriggerType FAILED_OVER
-
FIX_ADD
public static final ITriggerEntry.TriggerType FIX_ADD
-
FIX_DELETE
public static final ITriggerEntry.TriggerType FIX_DELETE
-
FORM_COMMIT
public static final ITriggerEntry.TriggerType FORM_COMMIT
-
FORM_DELETE
public static final ITriggerEntry.TriggerType FORM_DELETE
-
FORM_IN
public static final ITriggerEntry.TriggerType FORM_IN
-
FORM_OUT
public static final ITriggerEntry.TriggerType FORM_OUT
-
FORM_SAVE
public static final ITriggerEntry.TriggerType FORM_SAVE
-
GLOBAL_EXTCFG
public static final ITriggerEntry.TriggerType GLOBAL_EXTCFG
-
GRAPH_FORK_REPO
public static final ITriggerEntry.TriggerType GRAPH_FORK_REPO
-
GRAPH_LFS_PUSH
public static final ITriggerEntry.TriggerType GRAPH_LFS_PUSH
-
GRAPH_PUSH_COMPLETE
public static final ITriggerEntry.TriggerType GRAPH_PUSH_COMPLETE
-
GRAPH_PUSH_REFERENCE
public static final ITriggerEntry.TriggerType GRAPH_PUSH_REFERENCE
-
GRAPH_PUSH_REFERENCE_COMPLETE
public static final ITriggerEntry.TriggerType GRAPH_PUSH_REFERENCE_COMPLETE
-
GRAPH_PUSH_START
public static final ITriggerEntry.TriggerType GRAPH_PUSH_START
-
HEARTBEAT_DEAD
public static final ITriggerEntry.TriggerType HEARTBEAT_DEAD
-
HEARTBEAT_MISSING
public static final ITriggerEntry.TriggerType HEARTBEAT_MISSING
-
HEARTBEAT_RESUMED
public static final ITriggerEntry.TriggerType HEARTBEAT_RESUMED
-
JOURNAL_ROTATE
public static final ITriggerEntry.TriggerType JOURNAL_ROTATE
-
JOURNAL_ROTATE_LOCK
public static final ITriggerEntry.TriggerType JOURNAL_ROTATE_LOCK
-
PULL_ARCHIVE
public static final ITriggerEntry.TriggerType PULL_ARCHIVE
-
PUSH_COMMIT
public static final ITriggerEntry.TriggerType PUSH_COMMIT
-
PUSH_CONTENT
public static final ITriggerEntry.TriggerType PUSH_CONTENT
-
PUSH_SUBMIT
public static final ITriggerEntry.TriggerType PUSH_SUBMIT
-
SERVICE_CHECK
public static final ITriggerEntry.TriggerType SERVICE_CHECK
-
SHELVE_COMMIT
public static final ITriggerEntry.TriggerType SHELVE_COMMIT
-
SHELVE_DELETE
public static final ITriggerEntry.TriggerType SHELVE_DELETE
-
SHELVE_SUBMIT
public static final ITriggerEntry.TriggerType SHELVE_SUBMIT
-
-
Method Detail
-
values
public static ITriggerEntry.TriggerType[] 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 (ITriggerEntry.TriggerType c : ITriggerEntry.TriggerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ITriggerEntry.TriggerType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
fromString
public static ITriggerEntry.TriggerType fromString(java.lang.String triggerType)
Return a suitable Trigger type as inferred from the passed-in string, which is assumed to be the string form of a Depot type. Otherwise return the null.- Parameters:
triggerType
- triggerType- Returns:
- TriggerType
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<ITriggerEntry.TriggerType>
-
-