Constructs a new {@code IllegalFormatFlagsException} with the specified flags.paramf the specified flags. if (null == f) { throw new NullPointerException(); } flags = f;
if (null == f) { throw new NullPointerException(); } flags = f;
Returns the flags that are illegal.returnthe flags that are illegal. return flags;
return flags;
Returns the message string of the IllegalFormatFlagsException.returnthe message string of the IllegalFormatFlagsException. StringBuilder buffer = new StringBuilder(); buffer.append("Flags = '"); buffer.append(flags); buffer.append("'"); return buffer.toString();
StringBuilder buffer = new StringBuilder(); buffer.append("Flags = '"); buffer.append(flags); buffer.append("'"); return buffer.toString();