Enum ESyncParameters
- java.lang.Object
- 
- java.lang.Enum<ESyncParameters>
- 
- org.neotropic.kuwaiba.modules.commercial.sync.model.ESyncParameters
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ESyncParameters>
 
 public enum ESyncParameters extends Enum<ESyncParameters> - Author:
- Hardy Ryan Chingal Martinez 
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description SNMP_ADDRESSSNMP_PORTSSH_HOSTSSH_PASSWORDSSH_PORTSSH_USER
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ESyncParametersget(String abbreviation)Return enum based on register valuesStringgetValue()return value for Enum Tagstatic ESyncParametersvalueOf(String name)Returns the enum constant of this type with the specified name.static ESyncParameters[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SSH_PORTpublic static final ESyncParameters SSH_PORT 
 - 
SSH_HOSTpublic static final ESyncParameters SSH_HOST 
 - 
SSH_USERpublic static final ESyncParameters SSH_USER 
 - 
SSH_PASSWORDpublic static final ESyncParameters SSH_PASSWORD 
 - 
SNMP_ADDRESSpublic static final ESyncParameters SNMP_ADDRESS 
 - 
SNMP_PORTpublic static final ESyncParameters SNMP_PORT 
 
- 
 - 
Method Detail- 
valuespublic static ESyncParameters[] 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 (ESyncParameters c : ESyncParameters.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ESyncParameters valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getValuepublic String getValue() return value for Enum Tag- Returns:
- value; String
 
 - 
getpublic static ESyncParameters get(String abbreviation) Return enum based on register values- Parameters:
- abbreviation- ;String; values of any Tag
- Returns:
- enum Tag;ESyncParameters
 
 
- 
 
-