com.sportradar.livedata.sdk.common.classes.EntityEnumHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Livedata SDK is a client library that enables easier integration with the Livedata XML feed.
SDK exposes XML feed service interface in a more user-friendly way and isolates the client from having to do
XML feed parsing, proper connection handling, error recovery, event queuing and dispatching.
It also makes a client solution more stable and robust when it comes to feed handling,
especially with the release of new and updated XML feed versions.
/***************************************************************
* Copyright (c) 2013, Sportradar AG *
***************************************************************/
package com.sportradar.livedata.sdk.common.classes;
import com.sportradar.livedata.sdk.common.interfaces.EntityEnum;
/**
* Helper class containing static helper methods for {@link EntityEnum} class.
*
* @author uros.bregar
*/
public class EntityEnumHelper {
/**
* Gets the enumeration member associated with the passed {@code literalValue}
*
* @param The type of the enum
* @param members The members of the target enumeration.
* @param value The value to be compared with the value associated with the members
* @return The member of the target enum or a null reference.
*/
@SuppressWarnings("unchecked")
public static T getEnumMemberFromValue(T[] members, Object value) {
if (value == null) {
return null;
}
for (T member : members) {
if (member.isValueEqual(value)) {
return member;
}
}
return null;
}
}