Package se.conciliate.extensions.store
Enum Class MTRevisionLogEntry.LogEventType
java.lang.Object
java.lang.Enum<MTRevisionLogEntry.LogEventType>
se.conciliate.extensions.store.MTRevisionLogEntry.LogEventType
- All Implemented Interfaces:
Serializable
,Comparable<MTRevisionLogEntry.LogEventType>
,Constable
- Enclosing interface:
- MTRevisionLogEntry
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA new log message was added to the revision log by a user.A model revision was manually locked by a user.A symbol revision was manually locked by a user.A symbol revision was as part of locking a model revision.A new model revision was manually created by a user.A new model revision was created because a new revision was created of a symbol that was a part of the model.A new model revision was created because a symbol breaking down to the model was renamed.A new symbol revision was manually created by a user. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static MTRevisionLogEntry.LogEventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOCKED_SYMBOL_BY_USER
A symbol revision was manually locked by a user. -
LOCKED_MODEL_BY_USER
A model revision was manually locked by a user. -
LOCKED_SYMBOL_IN_MODEL
A symbol revision was as part of locking a model revision. -
NEW_SYMBOL_BY_USER
A new symbol revision was manually created by a user. -
NEW_MODEL_BY_USER
A new model revision was manually created by a user. -
NEW_MODEL_CONTAINS_SYMBOL
A new model revision was created because a new revision was created of a symbol that was a part of the model. -
NEW_MODEL_SYMBOL_RENAMED
A new model revision was created because a symbol breaking down to the model was renamed. -
CHANGES_IN_REVISION
A new log message was added to the revision log by a user.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-