Package org.firebirdsql.gds
Enum ParameterTagMapping
- java.lang.Object
- 
- java.lang.Enum<ParameterTagMapping>
- 
- org.firebirdsql.gds.ParameterTagMapping
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<ParameterTagMapping>
 
 public enum ParameterTagMapping extends java.lang.Enum<ParameterTagMapping> Mapping of connection parameter buffer item tags.This mapping is intended to reduce code duplication with database and service parameter buffers. For now this only contains authentication related tags. This may be expanded in the future. - Since:
- 3.0
- Author:
- Mark Rotteveel
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract intgetAuthPluginListTag()abstract intgetAuthPluginNameTag()abstract intgetConfigTag()abstract intgetEncryptedPasswordTag()abstract intgetPasswordTag()abstract intgetSpecificAuthDataTag()abstract intgetTrustedAuthTag()abstract intgetUserNameTag()static ParameterTagMappingvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ParameterTagMapping[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
DPBpublic static final ParameterTagMapping DPB 
 - 
SPBpublic static final ParameterTagMapping SPB 
 
- 
 - 
Method Detail- 
valuespublic static ParameterTagMapping[] 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 (ParameterTagMapping c : ParameterTagMapping.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ParameterTagMapping 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
 
 - 
getUserNameTagpublic abstract int getUserNameTag() 
 - 
getPasswordTagpublic abstract int getPasswordTag() 
 - 
getEncryptedPasswordTagpublic abstract int getEncryptedPasswordTag() 
 - 
getTrustedAuthTagpublic abstract int getTrustedAuthTag() 
 - 
getAuthPluginNameTagpublic abstract int getAuthPluginNameTag() 
 - 
getAuthPluginListTagpublic abstract int getAuthPluginListTag() 
 - 
getSpecificAuthDataTagpublic abstract int getSpecificAuthDataTag() 
 - 
getConfigTagpublic abstract int getConfigTag() 
 
- 
 
-