Enum WireMockHelpers

  • All Implemented Interfaces:
    com.github.jknack.handlebars.Helper<java.lang.Object>, java.io.Serializable, java.lang.Comparable<WireMockHelpers>

    public enum WireMockHelpers
    extends java.lang.Enum<WireMockHelpers>
    implements com.github.jknack.handlebars.Helper<java.lang.Object>
    This enum is implemented similar to the StringHelpers of handlebars. It is basically a library of all available wiremock helpers
    • Method Detail

      • values

        public static WireMockHelpers[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (WireMockHelpers c : WireMockHelpers.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WireMockHelpers valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null