All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.model.PullRequestEvent Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
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