The docs say...
FORMAT_SHORT = 0
Short formatting is a numerical representation of date/time.
Since:
1.0.0
FORMAT_MEDIUM = 1
Medium formatting is a mix of Numbers and Strings depending on what function is being called. If a String is used, it results in an abbreviated form of the time or date.
Since:
1.0.0
FORMAT_LONG = 2
Long formatting is a mix of Numbers and Strings depending on what function is being called. If a String is used, it results in the spelled out form of the time or date.
Since:
1.0.0
But where is it listed what the ACTUAL formatting is? for example I was hoping to use this for 'November'
var month_long = Calendar.info(now, Time.FORMAT_LONG).month;
But it returns
'Nov'