Class ConfigCategory
- java.lang.Object
- 
- com.inductiveautomation.ignition.gateway.web.models.ConfigCategory
 
- 
- All Implemented Interfaces:
- java.lang.Comparable<ConfigCategory>
 
 public final class ConfigCategory extends java.lang.Object implements java.lang.Comparable<ConfigCategory> A config category represents the 1st tier of the config menu. Platform provided categories are defined as static instances on this class.
- 
- 
Field SummaryFields Modifier and Type Field Description static ConfigCategoryALARMINGstatic ConfigCategoryDATABASESstatic ConfigCategoryDATASYNCstatic java.util.List<ConfigCategory>EDGE_CATEGORIESstatic ConfigCategoryEDGE_SYNC_SVCDeprecated.static ConfigCategoryNETWORKstatic ConfigCategoryOPCstatic ConfigCategorySECURITYstatic java.util.List<ConfigCategory>STANDARD_CATEGORIESstatic ConfigCategorySYSTEMstatic ConfigCategoryTAGS
 - 
Constructor SummaryConstructors Constructor Description ConfigCategory(java.lang.String name, java.lang.String displayKey)Create a new config category.ConfigCategory(java.lang.String name, java.lang.String displayKey, int order)Creates a category with an explicit order.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(ConfigCategory o)java.lang.StringgetDisplayKey()java.lang.StringgetName()
 
- 
- 
- 
Field Detail- 
SYSTEMpublic static final ConfigCategory SYSTEM 
 - 
NETWORKpublic static final ConfigCategory NETWORK 
 - 
SECURITYpublic static final ConfigCategory SECURITY 
 - 
DATABASESpublic static final ConfigCategory DATABASES 
 - 
ALARMINGpublic static final ConfigCategory ALARMING 
 - 
TAGSpublic static final ConfigCategory TAGS 
 - 
OPCpublic static final ConfigCategory OPC 
 - 
DATASYNCpublic static final ConfigCategory DATASYNC 
 - 
EDGE_SYNC_SVC@Deprecated public static final ConfigCategory EDGE_SYNC_SVC Deprecated.
 - 
STANDARD_CATEGORIESpublic static final java.util.List<ConfigCategory> STANDARD_CATEGORIES 
 - 
EDGE_CATEGORIESpublic static final java.util.List<ConfigCategory> EDGE_CATEGORIES 
 
- 
 - 
Constructor Detail- 
ConfigCategorypublic ConfigCategory(java.lang.String name, java.lang.String displayKey)Create a new config category. Order will be set to 10,000, the default order number where categories are then sorted alphabetically by keyname.- Parameters:
- name- The id/name of the category. Should be short, lower-case, no spaces or punctuation.
- displayKey- The resource key of the display string for this category.
 
 - 
ConfigCategorypublic ConfigCategory(java.lang.String name, java.lang.String displayKey, int order)Creates a category with an explicit order.
 
- 
 - 
Method Detail- 
getNamepublic java.lang.String getName() 
 - 
getDisplayKeypublic java.lang.String getDisplayKey() 
 - 
compareTopublic int compareTo(ConfigCategory o) - Specified by:
- compareToin interface- java.lang.Comparable<ConfigCategory>
 
 
- 
 
-