Enum Class TextFileSnapshot.Layer

java.lang.Object
java.lang.Enum<TextFileSnapshot.Layer>
org.eclipse.handly.snapshot.TextFileSnapshot.Layer
All Implemented Interfaces:
Serializable, Comparable<TextFileSnapshot.Layer>, Constable
Enclosing class:
TextFileSnapshot

public static enum TextFileSnapshot.Layer extends Enum<TextFileSnapshot.Layer>
Specifies whether the snapshot is to be taken directly from the file system, bypassing the workspace.
  • Enum Constant Details

    • WORKSPACE

      public static final TextFileSnapshot.Layer WORKSPACE
      Indicates that the snapshot is to be taken from the workspace, which may be out of sync with the file system.
    • FILESYSTEM

      public static final TextFileSnapshot.Layer FILESYSTEM
      Indicates that the snapshot is to be taken directly from the file system, bypassing the workspace.
  • Method Details

    • values

      public static TextFileSnapshot.Layer[] 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

      public static TextFileSnapshot.Layer valueOf(String name)
      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 name
      NullPointerException - if the argument is null