-
Notifications
You must be signed in to change notification settings - Fork 1
Enum Types
An enum type is a special data type that enables for a variable to be a set of predefined constants. The variable must be equal to one of the values that have been predefined for it.
All enums implicitly extend java.lang.Enum.
- Enum type's fields are in UpperCase letters, As they are constants.
- The enum declaration defines a class (called an enum type). The enum class body can include methods and other Fields.
- As You cannot invoke an enum constructor yourself. The constructor Fields must be private accessed.
- The compiler automatically adds some special methods when it creates an enum, Like: EnumClass.class {getEnumConstants(), getFields(), isEnum(), ...}.
public class EnumTest {
enum constats {
FIREFOX, CHROME;
}
enum ValuesFormOverriding {
FIREFOX {
@Override public String toString() { return "Firefox"; }
},
CHROME {
@Override public String toString() { return "Chrome"; }
}
}
enum ValuesThroughConstuctor {
FIREFOX("Firefox"),
CHROME("CH") {
@Override public String toString() { return "Chrome"; }
};
private String value;
ValuesThroughConstuctor(final String value) { this.value = value; }
public String getValue() { return value; }
}
enum Language{
// Non equal parameters, So using Variable arguments String...
English("english", "eng", "en", "en_GB", "en_US"),
German("german", "de", "ge"),
Russian("russian"),
// DriverPack
FF53 ("39", "40", "41", "42", "43", "44", "45"),
FF47 ("34", "35", "36", "37", "38"),
FF44 ("24", "31", "32", "33");
private final List<String> values;
Language(String ...values) { this.values = Arrays.asList(values); }
public List<String> getValues() { return values; }
public static List<String> getSimilarKeys( String value ) {
Language language = ALIAS_MAP.get(value.toUpperCase());
return language.getValues();
}
public static Language find(String name) {
if (name == null) throw new NullPointerException("alias null");
for (Language lang : Language.values()) {
if (lang.getValues().contains(name)) {
return lang;
}
}
return null;
}
static private Map<String,Language> ALIAS_MAP = new HashMap<String,Language>();
static {
for (Language language:Language.values()) {
// ignoring the case by normalizing to UpperCase
ALIAS_MAP.put(language.name().toUpperCase(),language);
for (String alias:language.values)
ALIAS_MAP.put(alias.toUpperCase(),language);
}
}
static public boolean has(String value) {
return ALIAS_MAP.containsKey(value.toUpperCase());
}
static public Language fromString(String value) {
if (value == null) throw new NullPointerException("alias null");
Language language = ALIAS_MAP.get(value);
if (language == null) throw new IllegalArgumentException("Not an alias: "+value);
return language;
}
}
enum Days {
MON(1,"Monday"), TUE(2,"Tuesday"), WED(3,"Wednesday"),
THU(4,"Thrusday"), FRI(5,"Friday"), SAT(6,"Saturday"),
SUN(7,"Sunday");
private int id;
private String day;
Days(int id, String day) {
this.id = id; this.day = day;
}
public int getId() { return id; }
public String getDay() { return day; }
}
public static void main(String[] args) {
System.out.println("KEY's < ");
System.out.println("F : " + constats.FIREFOX);
System.out.println("C : " + constats.CHROME);
System.out.println("Each toString @Override < ");
System.out.println("F : " + ValuesFormOverriding.FIREFOX);
System.out.println("C : " + ValuesFormOverriding.CHROME);
System.out.println("Constructor instead of multipe toString @Override < ");
System.out.println("F : " + ValuesThroughConstuctor.FIREFOX);
System.out.println("C : " + ValuesThroughConstuctor.CHROME);
System.out.println("Multi constructor Values < http://stackoverflow.com/a/12659023/5081877");
System.out.println("ENG : "+Language.find("en_GB"));
System.out.println("ENG Similar : "+Language.getSimilarKeys("en_GB"));
System.out.println("ENG Values : "+Language.English.getValues());
System.out.println("DriverPack : "+Language.find("37"));
System.out.println("DriverPack Similar : "+Language.getSimilarKeys("37"));
System.out.println("Fixed constructor values > http://stackoverflow.com/a/35057962/5081877");
System.out.println("ID : "+Days.FRI.getId());
System.out.println("Name : "+Days.FRI.getDay());
System.out.println("Enum Day Fields : "+Days.class.getFields().length);
Field[] constants = Days.class.getFields();
for (Field field : constants) {
System.out.println("DAY : "+field.getName());
}
}
}In a class-based object-oriented language, in general, state is carried by instances, methods are carried by classes, and inheritance is only of structure and behavior. Basic, Refactoring Techniques
Method signature: It consists of method name and parameter list (number/type/order of the parameters). methodName(parametersList y). An instance method in a subclass with the same signature and return type as an instance method in the super-class overrides the super-class's method.
Java OOP concepts
Class - Collection of a common features of a group of object [static/instance Fields, blocks and Methods]
Object - Instance of a class (instance fields)
Abstraction - Process of hiding complex info and providing required info like API, Marker Interfaces ...
Encapsulation(Security) - Class Binding up with data members(fields) and member functions.
Inheritance (Reusability by placing common code in single class)
1. Multilevel - {A -> B -> C} 2. Multiple - Diamond problem {A <- (B) -> C} [Java not supports] 3. Cyclic {A <-> B} [Java not supports]
* Is-A Relation - Class A extends B
* Hash-A Relation - Class A { B obj = new B(); } - (Composition/Aggregation)
Polymorphism (Flexibility) 1. Compile-Time Overloading 2. Runtime Overriding [Greek - "many forms"]
int[] arr = {1,2,3}; int arrLength = arr.length; // Fixed length of sequential blocks to hold same data type
String str = "Yash"; int strLength = str.length(); // Immutable Object value can't be changed.
List<?> collections = new ArrayList<String>(); int collectionGroupSize = collections.size();
Map<?, ?> mapEntry = new HashMap<String, String>();
Set<?> keySet = mapEntry.keySet(); // Set of Key's
Set<?> entrySet = mapEntry.entrySet(); // Set of Entries [Key, Value]
// Immutable Objects once created they can't be modified. final class Integer/String/Employee
Integer val = Integer.valueOf("100"); String str2 = String.valueOf(100); // Immutable classes
final class Employee { // All Wrapper classes, java.util.UUID, java.io.File ...
private final String empName; // Field as Final(values can be assigned only once) Only getter functions.
public Employee(String name) { this.empName = name; }
} Native Java Code for Hashtable.h, Hashtable.cpp
SQL API.
You can check your current JDK and JRE versions on your command prompt respectively,
- JDK
javac -version [C:\Program Files\Java\jdk1.8.0_121\bin]o/p:javac 1.8.0_121 - JRE
java -version[C:\Program Files\Java\jdk1.8.0_121\bin]o/P:java version "1.8.0_102"
JAVA_HOME - Must be set to JDK otherwise maven projects leads to compilation error. [ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? C:\Softwares\OpenJDK\, 7-zip
Fatal error compiling: invalid target release: JRE and JDK must be of same version
1.8.0.XXX
Disable TLS 1.0 and 1.1
security-libs/javax.net.ssl: TLS 1.0 and 1.1 are versions of the TLS protocol that are no longer considered secure and have been superseded by more secure and modern versions (TLS 1.2 and 1.3).
Core Java
-
Java Programming Language Basics
- Object, Class, Encapsulation, Interface, Inheritance, Polymorphism (Method Overloading, Overriding)
- JVM Architecture, Memory Areas
- JVM Class Loader SubSystem
- Core Java Interview Questions & Programs
- Interview Concepts
Stack Posts
- Comparable vs Comparator
- Collections and Arrays
-
String, StringBuffer, and StringBuilder
- String reverse
- Remove single char
- File data to String
- Unicode equality check Spacing entities
- split(String regex, int limit)
- Longest String of an array
-
Object Serialization
- Interface's Serializable vs Externalizable
- Transient Keyword
-
implements Runnablevsextends Thread - JSON
- Files,
Logging API- Append text to Existing file
- Counting number of words in a file
- Properties
- Properties with reference key