Enum Class RollingPolicySystemProperty
java.lang.Object
java.lang.Enum<RollingPolicySystemProperty>
org.springframework.boot.logging.logback.RollingPolicySystemProperty
- All Implemented Interfaces:
- Serializable,- Comparable<RollingPolicySystemProperty>,- Constable
Logback rolling policy system properties that can later be used by log configuration
 files.
- Since:
- 3.2.0
- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionLogging system property for the clean history on start flag.Logging system property for the rolled-over log file name pattern.Logging system property for the file log max size.Logging system property for the file log max history.Logging system property for the file total size cap.
- 
Method SummaryModifier and TypeMethodDescriptionReturn the name of environment variable that can be used to access this property.static RollingPolicySystemPropertyReturns the enum constant of this class with the specified name.static RollingPolicySystemProperty[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
FILE_NAME_PATTERNLogging system property for the rolled-over log file name pattern.
- 
CLEAN_HISTORY_ON_STARTLogging system property for the clean history on start flag.
- 
MAX_FILE_SIZELogging system property for the file log max size.
- 
TOTAL_SIZE_CAPLogging system property for the file total size cap.
- 
MAX_HISTORYLogging system property for the file log max history.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getEnvironmentVariableNameReturn the name of environment variable that can be used to access this property.- Returns:
- the environment variable name
 
 
-