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

com.rapid7.container.analyzer.docker.model.image.FileState Maven / Gradle / Ivy

There is a newer version: 0.2.26
Show newest version
package com.rapid7.container.analyzer.docker.model.image;

public enum FileState {

  ADDED,
  REMOVED,
  UPDATED,
  UNKNOWN;

  public static FileState fromString(String value) {
    for (FileState type : values())
      if (type.name().equalsIgnoreCase(value))
        return type;

    return UNKNOWN;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy