The java.time.format.TextStyle
enum has the following options:
/**
* Full text, typically the full description.
* For example, day-of-week Monday might output "Monday".
*/
FULL(Calendar.LONG_FORMAT, 0),
/**
* Full text for stand-alone use, typically the full description.
* For example, day-of-week Monday might output "Monday".
*/
FULL_STANDALONE(Calendar.LONG_STANDALONE, 0),
My question is: what is a difference between FULL
and FULL_STANDALONE
- what does "for stand-alone" use mean?