/**
* 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),
[code]java.time.format.TextStyle[/code] enum has the following options: [code]/** * 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), [/code] My question is: what is a difference between [code]FULL[/code] and [code]FULL_STANDALONE[/code] - what does "for stand-alone" use mean?
У меня есть пользовательское поле на экране клиента (LocationExt.usrExpectedPaymentDate), как показано ниже.
Пользовательское поле на экране клиента
Мне нужно чтобы получить доступ к этому полю для расчета в графике ввода заказа на продажу, но я...