В чем разница между TextStyle.FULL и TextStyle.FULL_STANDALONEJAVA

Программисты JAVA общаются здесь
Гость
В чем разница между TextStyle.FULL и TextStyle.FULL_STANDALONE

Сообщение Гость »

Код: Выделить всё

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 and

Код: Выделить всё

FULL_STANDALONE
- what does "for stand-alone" use mean?


Источник: https://stackoverflow.com/questions/758 ... standalone

Вернуться в «JAVA»