Application in kotlin enumWhat does the [Flags] Enum Attribute mean in C#?Cast int to enum in C#How can I represent an 'Enum' in Python?Create Generic method constraining T to an EnumHow do I enumerate an enum in C#?What is the preferred syntax for defining enums in JavaScript?How to get an enum value from a string value in Java?Get int value from enum in C#How to loop through all enum values in C#?Comparing Java enum members: == or equals()?

How were Martello towers supposed to work?

How to properly say "bail on somebody" in German?

Integer Lists of Noah

How can I effectively communicate to recruiters that a phone call is not possible?

QGIS Zanzibar how to crop?

Did the Vulgar Latin verb "toccare" exist?

Is the genetic term "polycistronic" still used in modern biology?

How to ask for a LinkedIn endorsement?

How would my creatures handle groups without a strong concept of numbers?

How to convert a file with several spaces into a tab-delimited file?

Why isn't pressure filtration popular compared to vacuum filtration?

Why are Hobbits so fond of mushrooms?

Does Lufthansa weigh your carry on luggage?

Why doesn't sea level show seasonality?

C program to parse source code of another language

Would dual wielding daggers be a viable choice for a covert bodyguard?

If a non-friend comes across my Steam Wishlist, how easily can he gift me one of the games?

What's the minimum number of sensors for a hobby GPS waypoint-following UAV?

Should disabled buttons give feedback when clicked?

What is this triple-transistor arrangement called?

Why was hardware diversification an asset for the IBM PC ecosystem?

Does throwing a penny at a train stop the train?

How did the hit man miss?

Cracking the Coding Interview — 1.5 One Away



Application in kotlin enum


What does the [Flags] Enum Attribute mean in C#?Cast int to enum in C#How can I represent an 'Enum' in Python?Create Generic method constraining T to an EnumHow do I enumerate an enum in C#?What is the preferred syntax for defining enums in JavaScript?How to get an enum value from a string value in Java?Get int value from enum in C#How to loop through all enum values in C#?Comparing Java enum members: == or equals()?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















Is it safe if I use application in a kotlin enum? Like this:



enum class Labels(title: String, type: Int) 
PERFORM(App.application.getString(R.string.perform), 0),
DUTY(App.application.getString(R.string.duty), 1),
... ...










share|improve this question
























  • As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time the enum class is first loaded.

    – Robby Cornelissen
    Mar 26 at 2:30


















0















Is it safe if I use application in a kotlin enum? Like this:



enum class Labels(title: String, type: Int) 
PERFORM(App.application.getString(R.string.perform), 0),
DUTY(App.application.getString(R.string.duty), 1),
... ...










share|improve this question
























  • As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time the enum class is first loaded.

    – Robby Cornelissen
    Mar 26 at 2:30














0












0








0








Is it safe if I use application in a kotlin enum? Like this:



enum class Labels(title: String, type: Int) 
PERFORM(App.application.getString(R.string.perform), 0),
DUTY(App.application.getString(R.string.duty), 1),
... ...










share|improve this question
















Is it safe if I use application in a kotlin enum? Like this:



enum class Labels(title: String, type: Int) 
PERFORM(App.application.getString(R.string.perform), 0),
DUTY(App.application.getString(R.string.duty), 1),
... ...







android kotlin enums android-application-class






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 6:28









Sergey

4,9042 gold badges22 silver badges35 bronze badges




4,9042 gold badges22 silver badges35 bronze badges










asked Mar 26 at 2:28









liumingyiliumingyi

15 bronze badges




15 bronze badges












  • As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time the enum class is first loaded.

    – Robby Cornelissen
    Mar 26 at 2:30


















  • As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time the enum class is first loaded.

    – Robby Cornelissen
    Mar 26 at 2:30

















As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time the enum class is first loaded.

– Robby Cornelissen
Mar 26 at 2:30






As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time the enum class is first loaded.

– Robby Cornelissen
Mar 26 at 2:30













1 Answer
1






active

oldest

votes


















1














I wouldn't use App class in the enum. Instead I would pass only resource id, because we can't rely that App class is instantiated at the moment of enum class is first loaded:



enum class Labels(val titleResId: Int, val type: Int) 
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...



And later we can use it, for example in Activity, like this:



textView.setText(Labels.PERFORM.titleResId)





share|improve this answer























  • Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in

    – liumingyi
    Mar 27 at 5:02










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55349009%2fapplication-in-kotlin-enum%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














I wouldn't use App class in the enum. Instead I would pass only resource id, because we can't rely that App class is instantiated at the moment of enum class is first loaded:



enum class Labels(val titleResId: Int, val type: Int) 
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...



And later we can use it, for example in Activity, like this:



textView.setText(Labels.PERFORM.titleResId)





share|improve this answer























  • Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in

    – liumingyi
    Mar 27 at 5:02















1














I wouldn't use App class in the enum. Instead I would pass only resource id, because we can't rely that App class is instantiated at the moment of enum class is first loaded:



enum class Labels(val titleResId: Int, val type: Int) 
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...



And later we can use it, for example in Activity, like this:



textView.setText(Labels.PERFORM.titleResId)





share|improve this answer























  • Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in

    – liumingyi
    Mar 27 at 5:02













1












1








1







I wouldn't use App class in the enum. Instead I would pass only resource id, because we can't rely that App class is instantiated at the moment of enum class is first loaded:



enum class Labels(val titleResId: Int, val type: Int) 
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...



And later we can use it, for example in Activity, like this:



textView.setText(Labels.PERFORM.titleResId)





share|improve this answer













I wouldn't use App class in the enum. Instead I would pass only resource id, because we can't rely that App class is instantiated at the moment of enum class is first loaded:



enum class Labels(val titleResId: Int, val type: Int) 
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...



And later we can use it, for example in Activity, like this:



textView.setText(Labels.PERFORM.titleResId)






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 26 at 6:25









SergeySergey

4,9042 gold badges22 silver badges35 bronze badges




4,9042 gold badges22 silver badges35 bronze badges












  • Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in

    – liumingyi
    Mar 27 at 5:02

















  • Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in

    – liumingyi
    Mar 27 at 5:02
















Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in

– liumingyi
Mar 27 at 5:02





Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in

– liumingyi
Mar 27 at 5:02








Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55349009%2fapplication-in-kotlin-enum%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript