Class TokenConverter
- java.lang.Object
-
- ch.qos.logback.core.rolling.helper.TokenConverter
-
public class TokenConverter extends java.lang.ObjectTokenConverteroffers some basic functionality used by more specific token converters.It basically sets up the chained architecture for tokens. It also forces derived classes to fix their type.
- Since:
- 1.3
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedTokenConverter(int t)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TokenConvertergetNext()intgetType()voidsetNext(TokenConverter next)voidsetType(int i)
-
-
-
Field Detail
-
IDENTITY
static final int IDENTITY
- See Also:
- Constant Field Values
-
INTEGER
static final int INTEGER
- See Also:
- Constant Field Values
-
DATE
static final int DATE
- See Also:
- Constant Field Values
-
type
int type
-
next
TokenConverter next
-
-
Method Detail
-
getNext
public TokenConverter getNext()
-
setNext
public void setNext(TokenConverter next)
-
getType
public int getType()
-
setType
public void setType(int i)
-
-