Package net.zemberek.araclar.turkce
Enum YaziBirimiTipi
- java.lang.Object
-
- java.lang.Enum<YaziBirimiTipi>
-
- net.zemberek.araclar.turkce.YaziBirimiTipi
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<YaziBirimiTipi>
public enum YaziBirimiTipi extends java.lang.Enum<YaziBirimiTipi>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static YaziBirimiTipi
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static YaziBirimiTipi[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KELIME
public static final YaziBirimiTipi KELIME
-
NOKTALAMA
public static final YaziBirimiTipi NOKTALAMA
-
BOSLUK
public static final YaziBirimiTipi BOSLUK
-
CUMLE
public static final YaziBirimiTipi CUMLE
-
PARAGRAF
public static final YaziBirimiTipi PARAGRAF
-
DIGER
public static final YaziBirimiTipi DIGER
-
-
Method Detail
-
values
public static YaziBirimiTipi[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (YaziBirimiTipi c : YaziBirimiTipi.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static YaziBirimiTipi valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<YaziBirimiTipi>
-
-