com.capitalone.dashboard.model.PullRequestEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
public enum PullRequestEvent {
Assigned,
Unassigned,
Review_requested,
Review_request_removed,
Labeled,
Unlabeled,
Opened,
Edited,
Closed,
Ready_for_review,
Locked,
Unlocked,
Reopened,
Merged,
Synchronize;
public static PullRequestEvent fromString(String value) {
for (PullRequestEvent event : values()) {
if (event.toString().equalsIgnoreCase(value)) {
return event;
}
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy