public enum FeedType extends Enum<FeedType>
| Enum Constant and Description |
|---|
ATOM_0_3 |
ATOM_1_0 |
RSS_0_90 |
RSS_0_91 |
RSS_0_92 |
RSS_0_93 |
RSS_1_0 |
RSS_2_0 |
| Modifier and Type | Method and Description |
|---|---|
String |
getType() |
static FeedType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeedType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeedType RSS_0_90
public static final FeedType RSS_0_91
public static final FeedType RSS_0_92
public static final FeedType RSS_0_93
public static final FeedType RSS_1_0
public static final FeedType RSS_2_0
public static final FeedType ATOM_0_3
public static final FeedType ATOM_1_0
public static FeedType[] values()
for (FeedType c : FeedType.values()) System.out.println(c);
public static FeedType 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 getType()
Copyright © 2008–2013 CodeLutin. All rights reserved.