java.lang.Object
java.lang.Enum<Route>
stud.ntnu.idatt1005.pantrypal.enums.Route
All Implemented Interfaces:
Serializable, Comparable<Route>, Constable

public enum Route extends Enum<Route>
  • Enum Constant Details

    • HOME

      public static final Route HOME
    • PANTRY

      public static final Route PANTRY
    • SHOPPING_LIST

      public static final Route SHOPPING_LIST
    • RECIPE

      public static final Route RECIPE
    • COOKBOOK

      public static final Route COOKBOOK
    • ADD_RECIPE

      public static final Route ADD_RECIPE
    • LOGIN

      public static final Route LOGIN
    • LOGOUT

      public static final Route LOGOUT
  • Constructor Details

    • Route

      private Route()
  • Method Details

    • values

      public static Route[] 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 Route 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Route>