public enum DiscussionInclusion extends Enum<DiscussionInclusion>
| Enum Constant and Description |
|---|
ATTACHMENTS |
COMMENTS |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DiscussionInclusion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiscussionInclusion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiscussionInclusion COMMENTS
public static final DiscussionInclusion ATTACHMENTS
public static DiscussionInclusion[] values()
for (DiscussionInclusion c : DiscussionInclusion.values()) System.out.println(c);
public static DiscussionInclusion valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<DiscussionInclusion>Copyright © 2014–2017 Smartsheet. All rights reserved.