Package net.zemberek.islemler.cozumleme
Enum CozumlemeSeviyesi
- java.lang.Object
-
- java.lang.Enum<CozumlemeSeviyesi>
-
- net.zemberek.islemler.cozumleme.CozumlemeSeviyesi
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CozumlemeSeviyesi>
public enum CozumlemeSeviyesi extends java.lang.Enum<CozumlemeSeviyesi>
Bu enumerasyon sinifi cozumleme islemi stratejisini belirler.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TEK_KOK
denetleme isleminde kullanilir.TUM_KOK_VE_EKLER
butun olasi kokler ve her kok icin tum olasi ekler icin cozumleme yap.TUM_KOKLER
kok bulma isleminde kullanilir.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CozumlemeSeviyesi
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CozumlemeSeviyesi[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEK_KOK
public static final CozumlemeSeviyesi TEK_KOK
denetleme isleminde kullanilir. sadece tek kok-ek cozumunun bulunacagini isaret eder.
-
TUM_KOKLER
public static final CozumlemeSeviyesi TUM_KOKLER
kok bulma isleminde kullanilir. tum olasi kokler icin cozumleri bul.
-
TUM_KOK_VE_EKLER
public static final CozumlemeSeviyesi TUM_KOK_VE_EKLER
butun olasi kokler ve her kok icin tum olasi ekler icin cozumleme yap.
-
-
Method Detail
-
values
public static CozumlemeSeviyesi[] 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 (CozumlemeSeviyesi c : CozumlemeSeviyesi.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CozumlemeSeviyesi 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
-
-