代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/325233/13216914
cs ussdstatus.cs
namespace mCore
{
using System;
public enum USSDStatus
{
NoFurtherUserActionRequired,
FurtherUserActionRequired,
USSDTerminatedByNetwork,
OtherLo
www.eeworm.com/read/325233/13216924
cs longmessage.cs
namespace mCore
{
using System;
public enum LongMessage
{
Truncate,
SimpleSplit,
FormattedSplit,
Concatenate
}
}
www.eeworm.com/read/480524/1316705
java tickettype.java
package com.tarena.abs.model;
public enum TicketType {
AT,
CT,
BT;
}
www.eeworm.com/read/453149/1642516
java enusersexs.java
package common.en;
public enum enUserSexs {
/**
* 男
*/
male,
/**
* 女
*/
female,
}
www.eeworm.com/read/240162/4579236
c defarg3.c
struct A {
enum { value = 10 };
A() { f(); }
static int f(int i=value);
};
www.eeworm.com/read/233448/4671510
c defarg3.c
struct A {
enum { value = 10 };
A() { f(); }
static int f(int i=value);
};
www.eeworm.com/read/209357/4978874
java annotationtype.java
package org.jamon.codegen;
public enum AnnotationType {
IMPL,
PROXY,
BOTH;
}
www.eeworm.com/read/209211/4982842
h libsec.h
#ifndef _MPINT
typedef struct mpint mpint;
#endif
/////////////////////////////////////////////////////////
// AES definitions
/////////////////////////////////////////////////////////
enum
{
AESb
www.eeworm.com/read/206619/5006391
cs textselection.cs
using System;
namespace ICSharpCode.ConsolePad
{
enum TextSelection
{
None,
Selecting,
Selected
}
}
www.eeworm.com/read/195032/5115401
cs gamestates.cs
using System;
public enum GameStates {
Loading,
Running,
Config,
Paused,
HelpScreen,
Exiting
}