Web implementation of the Gourmet Recipe Manager
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
345 B

/**
* Copyright (C) 2022, Tim Holloway
*
* Date written: Jan 9, 2022
* Author: Tim Holloway <timh@mousetech.com>
*/
package com.mousetech.gourmetj;
/**
* Types of recipe search for mainpage.
*
* @author timh
* @since Jan 9, 2022
*/
public enum RecipeSearchType {
rst_BY_NAME,
rst_BY_CATEGORY,
rst_BY_CUISINE,
rst_BY_INGREDIENT
}