Package org.apache.tomcat.jdbc.pool
Class PoolProperties.InterceptorProperty
- java.lang.Object
-
- org.apache.tomcat.jdbc.pool.PoolProperties.InterceptorProperty
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- PoolProperties
public static class PoolProperties.InterceptorProperty extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InterceptorProperty(String name, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getName()
String
getValue()
boolean
getValueAsBoolean(boolean def)
byte
getValueAsByte(byte def)
char
getValueAschar(char def)
double
getValueAsDouble(double def)
float
getValueAsFloat(float def)
int
getValueAsInt(int def)
long
getValueAsLong(long def)
short
getValueAsShort(short def)
int
hashCode()
-
-
-
Method Detail
-
getName
public String getName()
-
getValue
public String getValue()
-
getValueAsBoolean
public boolean getValueAsBoolean(boolean def)
-
getValueAsInt
public int getValueAsInt(int def)
-
getValueAsLong
public long getValueAsLong(long def)
-
getValueAsByte
public byte getValueAsByte(byte def)
-
getValueAsShort
public short getValueAsShort(short def)
-
getValueAsFloat
public float getValueAsFloat(float def)
-
getValueAsDouble
public double getValueAsDouble(double def)
-
getValueAschar
public char getValueAschar(char def)
-
-