- All Implemented Interfaces:
- Property<Long>
public class LngProp
extends PropertyBase<Long>
A Property that refers to a Long value.
All the basic Java types use a three letter abv. to keep declaration lines
short, in the form of: [Type]Prop
By default this uses the TrimToNullTrimmer, which removes all whitespace from
the value and ultimately null if the value is all whitespace.
If a LngProp is configured as a string, such as from a properties file, on
command line, environment variable, etc., the value does NOT include a trailing
'L', as is done with Java literals. E.g., this is the correct way to spec
a long value in a properties file:
name.of.my.long.property.MY_PROPERTY = 90
- Author:
- eeverman