Enum Class InsdogUtils

java.lang.Object
java.lang.Enum<InsdogUtils>
jp.co.moneyforward.autotest.framework.utils.InsdogUtils
All Implemented Interfaces:
Serializable, Comparable<InsdogUtils>, Constable

public enum InsdogUtils extends Enum<InsdogUtils>
  • Method Details

    • values

      public static InsdogUtils[] 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 InsdogUtils 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
    • materializeResource

      public static void materializeResource(File output, String resourcePath)
      Copies the contents of a resource file from the classpath to a specified output file.
      Parameters:
      output - The output file to which the resource contents will be written
      resourcePath - A path to a resource on a class path to be materialized
    • let

      public static <T> Act.Let<T> let(T value)
    • func

      public static <T,R> Act.Func<T,R> func(Function<T,R> func)
    • sink

      public static <T> Act.Sink<T> sink(Consumer<T> sink)
    • page

      public static Act.Func<com.microsoft.playwright.Page, com.microsoft.playwright.Page> page(Consumer<com.microsoft.playwright.Page> action)